export interface GraphQLInfo {
    title?: string;
    version?: string;
    description?: string;
    termsOfService?: string;
    contact?: GraphQLContact;
    license?: GraphQLLicense;
}
export interface GraphQLContact {
    name?: string;
    url?: string;
    email?: string;
}
export interface GraphQLLicense {
    name?: string;
    url?: string;
    identifier?: string;
}
