import React from 'react';
import type { FCWithSlotMarker } from '../utils/types/Slots';
export type ActionListDescriptionProps = {
    /**
     * Secondary text style variations.
     *
     * - `"inline"` - Secondary text is positioned beside primary text.
     * - `"block"` - Secondary text is positioned below primary text.
     */
    variant?: 'inline' | 'block';
    className?: string;
    style?: React.CSSProperties;
    /**
     * Whether the inline description should truncate the text on overflow.
     */
    truncate?: boolean;
};
export declare const Description: FCWithSlotMarker<React.PropsWithChildren<ActionListDescriptionProps>>;
//# sourceMappingURL=Description.d.ts.map