import type { Environment } from '../types'; export declare const getEnvironmentFileName: (options: { flavor: string; envFiles?: Record; }) => string; export declare const getFlavor: (options: { flavors: Record; flavor?: string; }) => string; export declare const getFirebaseProjectId: (options: { flavors: Record; flavor: string; }) => string; /** * @example toDisplayDuration(85600) // '1:25' toDisplayDuration(85600, true) // * '1:25.6' * * @param time the time in milliseconds * @returns a readable time */ export declare const toDisplayDuration: (time: number) => string; export declare const toSnakeCase: (str: string) => string; export declare const toCamelCase: (str: string) => string; export declare const toDotEnvironmentCode: (environment: T) => string; export declare const toImportPath: (typescriptFilePath: string, executeDirectory: string) => string;