export interface RadialSliceProps {
    /**
     * Colors for each slice. Array of hex strings.
     * Use useChartColors().categorical(n).
     */
    colors: string[];
    /** Corner radius on slice edges (default: 2) */
    cornerRadius?: number;
    /** Show percentage labels (default: true) */
    labels?: boolean;
    /** Minimum percentage to show a label (default: 5) */
    labelThreshold?: number;
}
/**
 * Pie/donut slices. Reads slice geometry from radial context.
 *
 * @example
 * ```
 * <RadialSlice colors={colors.categorical(5)} />
 * ```
 */
export declare function RadialSlice({ colors, cornerRadius, labels, labelThreshold, }: RadialSliceProps): import("react").JSX.Element | null;
//# sourceMappingURL=RadialSlice.d.ts.map