import { GraphQLScalarType } from "graphql";
interface Config {
    name: string;
    regex: RegExp;
}
export declare const regularExpressionFactory: ({ name, regex }: Config) => {
    scalar: string;
    resolver: GraphQLScalarType;
};
export {};
