export type Route = { path: string; siteId: string; locale: { name: string; }; contentLink: { id?: number | null; workId?: number | null; guidValue?: string | null; }; name: string; contentType: string[]; slug: string; changed: string; published: string; url: string; }; export type Result = { Content: { items: Route[]; cursor: string; total: number; }; }; export type Variables = { cursor?: string; pageSize?: number; typeFilter?: string | string[]; siteId?: string; }; export declare const query: string;