import type { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core'; export declare type BasicPerson_Member_Fragment = { readonly __typename: 'Member'; readonly id: string; readonly displayName: string | null; readonly profileImage: { readonly __typename: 'File'; readonly id: string; readonly url: string; } | null; }; export declare type BasicPerson_User_Fragment = { readonly __typename: 'User'; readonly displayTitle: string | null; readonly id: string; readonly displayName: string | null; readonly profileImage: { readonly __typename: 'File'; readonly id: string; readonly url: string; } | null; }; export declare type BasicPersonFragment = BasicPerson_Member_Fragment | BasicPerson_User_Fragment; export declare const BasicPersonFragmentDoc: DocumentNode;