import type { FunctionComponent } from 'react'; import type { BaseProps, ForwardProps } from '../../types'; export interface LineSkeletonProps extends BaseProps { /** * Width of the skeleton. * @default 'default' */ width?: 'default' | 'l' | 'm' | 's'; /** * Variant of the skeleton. * @default 'default' */ variant?: 'default' | 'link'; } export declare const StyledLineSkeleton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, Partial>> & string; declare const LineSkeleton: FunctionComponent; export default LineSkeleton; //# sourceMappingURL=LineSkeleton.d.ts.map