interface CreateFileParams {
    extension?: string;
    fileBody: Record<any, any> | 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, };
