import { ScalarType } from './Types/ScalarType';
declare const handleScalarType: ({ type }: {
    type: ScalarType;
}) => {
    typeName: string;
    typeDefinitions: string[];
};
export { handleScalarType };
