import { type ComponentInterface } from "../../stencil-public-runtime"; /** * Render this component while you are waiting for your content. * Could be a fetch, or another way of loading data. * Either toggle the render of the component, or use the disable property unmount the skeleton. */ export declare class ScoutSkeleton implements ComponentInterface { /** * Use the disabled property to unmount the skeleton */ disabled: boolean; /** * If you are in need of a specific background color, you can set it. */ backgroundColor: string | null; render(): any; }