/**
 * Internal dependencies
 */
import type { Resource } from './resource';
export interface AudioResource extends Pick<Resource, 'type' | 'id' | 'src' | 'mimeType' | 'isExternal' | 'isPlaceholder'> {
    /** Length in seconds. */
    length: number;
    /** The formatted length, e.g. "01:17". */
    lengthFormatted: string;
}
//# sourceMappingURL=audioResource.d.ts.map