/// import { Opacities } from "../../foundations/foundation-types"; interface RowProps { opacity: Opacities; } export declare const SkeletonRow: (props: RowProps) => JSX.Element; interface SkeletonRowsProps { numRows: number; lastItemSpacing?: number; opacity?: Opacities; } export declare const SkeletonRows: (props: SkeletonRowsProps) => JSX.Element; export {};