/**
 * A customizable skeleton component used to create skeletons of various sizes and shapes
 */
export declare class ModusWcSkeleton {
    private inheritedAttributes;
    /** Reference to the host element */
    el: HTMLElement;
    /** Custom CSS class to apply to the inner div. */
    customClass?: string;
    /** The height of the skeleton. */
    height: string;
    /** The shape of the skeleton. */
    shape?: 'circle' | 'rectangle';
    /** The width of the skeleton. */
    width: string;
    componentWillLoad(): void;
    private getClasses;
    private getStyles;
    render(): any;
}
