import { SKELETON_ICON_SIZES } from "../../../../utils/enums";
export declare class SlSkeletonIcon {
    /**
     * Size of the icon skeleton same as SDX
     * @type {1 | 2 | 3 | 4 | 5 | 6}
     * @default 3
     */
    size: SKELETON_ICON_SIZES | `${SKELETON_ICON_SIZES}`;
    /**
     * Whether the skeleton should display the shimmer animation
     * @type {boolean}
     * @default true
     */
    animated: boolean;
    private getSizeInPixels;
    render(): any;
}
