import { PageInfo } from './PageInfo'; export declare type MetaField = { readonly description: string; readonly key: string; readonly namespace: string; readonly type: string; readonly value: string; }; export declare type MetaFieldEdge = { readonly cursor: string; readonly node: MetaField; }; export declare type MetaFieldEdges = { readonly edges: readonly MetaFieldEdge[]; readonly pageInfo: PageInfo; };