export declare function Skeleton({ type, size }: {
    type: 'line' | 'square' | 'ball';
    size?: {
        width: string;
        height: string;
        margin?: string;
    };
}): import("react/jsx-runtime").JSX.Element;
