export interface IConformityDoc { mainType?: string; mainTypeId?: string; relType?: string; relTypeId?: string; } export interface ISavedConformity { mainType?: string; mainTypeId?: string; isSaved?: boolean; isRelated?: boolean; } export declare type ConformityQueryResponse = { loading: boolean; refetch: () => void; fetchMore: any; subscribeToMore: any; }; export interface IConformityEdit { mainType?: string; mainTypeId?: string; relType?: string; relTypeIds?: string[]; } export declare type EditConformityVariables = { _id: string; relType: string; relTypeIds: string[]; }; export declare type AddConformityMutation = ({ variables: IConformityDoc }: { variables: any; }) => void; export declare type EditConformityMutation = ({ variables: EditConformityVariables }: { variables: any; }) => Promise; //# sourceMappingURL=types.d.ts.map