import type { FunctionComponent } from 'react'; import type { BaseProps, ForwardProps } from '../../types'; export interface RectangleSkeletonProps extends BaseProps { /** * Width of the skeleton. * @default 'auto' */ width?: string | number; /** * Height of the skeleton. * @default 'auto' */ height?: string | number; /** * Variant of the skeleton. * @default 'default' */ variant?: 'default' | 'button'; } export declare const StyledRectangleSkeleton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, Partial>> & string; declare const RectangleSkeleton: FunctionComponent; export default RectangleSkeleton; //# sourceMappingURL=RectangleSkeleton.d.ts.map