export declare class SlSkeletonParagraph {
    /**
     * Number of text lines to display
     * @type {number}
     * @default 3
     */
    lines: number;
    /**
     * Minimum width for the narrowest line
     * If number is provided, it will be treated as pixels.
     * If string is provided, it will be used as-is (supports any CSS length unit).
     * @type {number | string}
     * @default '70%'
     */
    minWidth: number | string;
    /**
     * Maximum width for the widest line
     * If number is provided, it will be treated as pixels.
     * If string is provided, it will be used as-is (supports any CSS length unit).
     * @type {number | string}
     * @default '100%'
     */
    maxWidth: number | string;
    /**
     * Gap between lines
     * If number is provided, it will be treated as pixels.
     * If string is provided, it will be used as-is (supports any CSS length unit).
     * @type {number | string}
     * @default 6
     */
    gap: number | string;
    /**
     * Whether the skeleton should display the shimmer animation
     * @type {boolean}
     * @default true
     */
    animated: boolean;
    private generateLineWidth;
    render(): any;
}
