import type { Name } from '../operations/generalTypes';
export interface SchemalizeOptions {
    readonly shouldDecamelize: boolean;
    readonly shouldQuote: boolean;
}
export declare function createSchemalize(options: SchemalizeOptions): (value: Name) => string;
