import { CSSProperties } from 'react'; export type InnerRowItemData = { value: string; width?: number; }; export type RowItemData = { [key: string]: InnerRowItemData; }; export type SkeletonRowProps = { height: number; style: CSSProperties; items: RowItemData; }; //# sourceMappingURL=type.d.ts.map