import { type Nullable } from '@fresha/api-tools-core'; import type { SchemaModel } from '@fresha/openapi-model/build/3.0.3'; export type NamingConvention = 'camel' | 'kebab' | 'snake' | 'title'; export declare const propertyName: (name: string, convention: Nullable) => string; export declare const objectPropertyName: (objectName: string, propName: string) => string; export declare const schemaToType: (schema: Nullable, convention: Nullable) => string; export declare const determineSchemaName: (schema: SchemaModel, convention: Nullable) => string; //# sourceMappingURL=utils.d.ts.map