import { CSSProperties, ReactNode } from 'react'; export interface SkeletonProps { baseColor?: string; highlightColor?: string; width?: string | number; height?: string | number; borderRadius?: string | number; inline?: boolean; duration?: number; enableAnimation?: boolean; count?: number; style?: CSSProperties; className?: string; containerStyle?: CSSProperties; containerClassName?: string; } interface SkeletonProviderProps extends SkeletonProps { children: ReactNode; } export declare const Skeleton: { (props: SkeletonProps): import("react/jsx-runtime").JSX.Element; displayName: string; } & { Provider: { ({ children, ...props }: SkeletonProviderProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; }; export {}; //# sourceMappingURL=skeleton.d.ts.map