export declare class SlSkeletonTabs {
    /**
     * Number of tabs to display
     * @type {number}
     * @default 3
     */
    count: number;
    /**
     * Width of each tab
     * 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 160
     */
    tabWidth: number | string;
    /**
     * Gap between tabs
     * 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 8
     */
    gap: number | string;
    /**
     * Whether the skeleton should display the shimmer animation
     * @type {boolean}
     * @default true
     */
    animated: boolean;
    render(): any;
}
