import { IcSkeletonVariants } from "./ic-skeleton.types"; import { IcThemeMode } from "../../utils/types"; export declare class Skeleton { el: HTMLIcSkeletonElement; /** * Sets the theme color to the dark or light theme color. "inherit" will set the color based on the system settings or ic-theme component. */ theme?: IcThemeMode; /** * The variant of the skeleton that will be displayed. */ variant?: IcSkeletonVariants; /** * Height of the skeleton. Accepts any valid CSS length (e.g. "24px", "2rem", "100%"). */ height?: string; /** * Width of the skeleton. Accepts any valid CSS length (e.g. "24px", "2rem", "100%"). */ width?: string; render(): any; }