export declare const standardScalarTypeNames: {
    String: string;
    ID: string;
    Int: string;
    Float: string;
    Boolean: string;
};
export interface StandardScalarRuntimeTypeMap {
    String: string;
    ID: string;
    Int: number;
    Float: number;
    Boolean: boolean;
}
export type StandardScalarRuntimeTypes = StandardScalarRuntimeTypeMap[keyof StandardScalarRuntimeTypeMap];
//# sourceMappingURL=scalars.d.ts.map