import React from 'react'; import { MQ } from '../../../utils'; export type AudioPlayerTimeFormatFn = ({ currentTime, duration, }: { currentTime: number; duration: number; }) => string; export type AudioPlayerTimeDisplayProps = { format?: AudioPlayerTimeFormatFn; overrides?: { typographyPreset?: MQ; stylePreset?: MQ; }; } & React.HTMLAttributes; //# sourceMappingURL=types.d.ts.map