interface CreateFileParams { extension?: string; fileBody: Record | string; fileName: string; } declare const toFileName: (value: string) => string; declare const toAppName: (value: string) => string; declare const toAppId: (value: string | undefined) => string; declare const toFunctionFileName: (value: string) => string; declare const toCollectionName: (value: string) => string; declare const toCollectionLabel: (value: string) => string; declare const toNotificationLabel: (value: string) => string; export { CreateFileParams, toAppId, toAppName, toCollectionLabel, toCollectionName, toFileName, toFunctionFileName, toNotificationLabel, };