import { CrudeTimeSpan, TimeSpanStringFormat } from '@synnaxlabs/x'; import { ReactElement } from 'react'; import { Generic } from '../../generic'; import { Text } from '../../text'; export type TimeSpanProps = Omit, "children"> & { children: CrudeTimeSpan; format?: TimeSpanStringFormat; }; export declare const TimeSpan: ({ children, format, ...rest }: TimeSpanProps) => ReactElement; //# sourceMappingURL=TimeSpan.d.ts.map