export declare const SKELETON_CLASSNAME = "k-skeleton";
export type KendoSkeletonProps = {
    shape?: 'circle' | 'text' | 'rect';
    animation?: false | 'wave' | 'pulse';
    style?: React.CSSProperties;
};
export declare const Skeleton: {
    (props: KendoSkeletonProps & React.HTMLAttributes<HTMLSpanElement>): import("react/jsx-runtime").JSX.Element;
    states: any[];
    options: {};
    className: string;
    defaultOptions: {
        shape: string;
        animation: string;
    };
};
export default Skeleton;
