import { BaseStyle } from 'primeng/base';
import * as i0 from "@angular/core";
export declare class SkeletonStyle extends BaseStyle {
    name: string;
    theme: ({ dt }: {
        dt: any;
    }) => string;
    classes: {
        root: ({ props }: {
            props: any;
        }) => (string | {
            'p-skeleton-circle': boolean;
            'p-skeleton-animation-none': boolean;
        })[];
    };
    inlineStyles: {
        root: {
            position: string;
        };
    };
    static ɵfac: i0.ɵɵFactoryDeclaration<SkeletonStyle, never>;
    static ɵprov: i0.ɵɵInjectableDeclaration<SkeletonStyle>;
}
/**
 *
 * Skeleton is a placeholder to display instead of the actual content.
 *
 * [Live Demo](https://www.primeng.org/skeleton/)
 *
 * @module skeletonstyle
 *
 */
export declare enum SkeletonClasses {
    /**
     * Class name of the root element
     */
    root = "p-skeleton"
}
export interface SkeletonStyle extends BaseStyle {
}
