import type { GraphQLScalarType } from 'graphql';
export declare function processLengthAnnotations(scalar: GraphQLScalarType, { min: minLength, max: maxLength, }: {
    min?: number;
    max?: number;
}): void;
