import { GraphQLInputObjectType } from "graphql"; /** * Authorization type for action validation. */ export interface Authorization { /** Name of the account that is trying to authorize */ actor: string; /** Name of the permission of the actor */ permission?: string; } export declare const authorization_type: GraphQLInputObjectType;