export declare const GetBlogsMock: { request: { query: import("graphql").DocumentNode; variables: { pageSpec: { pageNumber: number; itemPerPage: number; }; filterCriteriaSpec: { categoryId: null; isPublished: boolean; }; sortCriteriaSpecs: null; }; }; result: { data: { brands: { ID: string; blogs: { blogs: ({ id: string; slug: string; createdAt: number; author: string; isPublished: boolean; thumbnailImage: string; categoryIds: string[]; seos: { description: string; keywords: never[]; language: string; }[]; descriptions: { content: string; language: string; title: string; }[]; } | { id: string; slug: string; createdAt: number; author: string; isPublished: boolean; thumbnailImage: string; categoryIds: null; seos: { description: string; keywords: string[]; language: string; }[]; descriptions: { content: string; language: string; title: string; }[]; })[]; pageInfo: { totalItems: number; itemPerPage: number; pageNumber: number; }; }; }[]; }; }; };