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