/* eslint-disable */
import * as Types from '@graphcommerce/graphql-mesh/.mesh';

export type HygraphPageFragment = { title?: string | null, metaTitle: string, metaDescription: string, metaRobots: Types.MetaRobots, url: string, author?: string | null, date?: any | null, relatedPages: Array<{ title?: string | null, url: string }>, asset?: { url: string, width?: number | null, height?: number | null, mimeType?: string | null, size?: number | null, alt?: string | null } | null, content: Array<{ __typename: 'RowBlogContent', id: string, content?: { raw: any } | null } | { __typename: 'RowButtonLinkList', id: string, title: string, links: Array<{ title?: string | null, url: string }> } | { __typename: 'RowCategory', id: string } | { __typename: 'RowColumnOne', id: string, rowColumnOneVariant?: Types.RowColumnOneVariants | null, colOne: { raw: any } } | { __typename: 'RowColumnThree', id: string, colOne: { raw: any }, colTwo: { raw: any }, colThree: { raw: any } } | { __typename: 'RowColumnTwo', id: string, colOne: { raw: any }, colTwo: { raw: any } } | { __typename: 'RowContentLinks', id: string, title: string, contentLinks: Array<{ id: string, title: string, url: string, description?: { raw: any } | null, asset?: { url: string, width?: number | null, height?: number | null, mimeType?: string | null, size?: number | null, alt?: string | null } | null }> } | { __typename: 'RowHeroBanner', id: string, heroAsset: { url: string, width?: number | null, height?: number | null, mimeType?: string | null, size?: number | null, alt?: string | null }, copy: { raw: any }, pageLinks: Array<{ title: string, url: string, description?: { raw: any } | null, asset?: { url: string, width?: number | null, height?: number | null, mimeType?: string | null, size?: number | null, alt?: string | null } | null }> } | { __typename: 'RowLinks', id: string, title: string, linksVariant?: Types.RowLinksVariants | null, rowLinksCopy?: { raw: any } | null, pageLinks: Array<{ id: string, title: string, url: string, description?: { raw: any } | null, asset?: { url: string, width?: number | null, height?: number | null, mimeType?: string | null, size?: number | null, alt?: string | null } | null }> } | { __typename: 'RowProduct', id: string, variant?: Types.RowProductVariants | null, identity: string, title: string, asset?: { url: string, width?: number | null, height?: number | null, mimeType?: string | null, size?: number | null, alt?: string | null } | null, productCopy?: { raw: any } | null, pageLinks: Array<{ title: string, url: string, description?: { raw: any } | null, asset?: { url: string, width?: number | null, height?: number | null, mimeType?: string | null, size?: number | null, alt?: string | null } | null }> } | { __typename: 'RowQuote', id: string, quote: { raw: any } } | { __typename: 'RowServiceOptions', id: string, title: string, serviceOptions: Array<{ title: string, url: string, description?: { raw: any } | null, asset?: { url: string, width?: number | null, height?: number | null, mimeType?: string | null, size?: number | null, alt?: string | null } | null }> } | { __typename: 'RowSpecialBanner', id: string, topic?: string | null, asset?: { url: string, width?: number | null, height?: number | null, mimeType?: string | null, size?: number | null, alt?: string | null } | null, copy: { raw: any }, pageLinks: Array<{ title: string, url: string, description?: { raw: any } | null, asset?: { url: string, width?: number | null, height?: number | null, mimeType?: string | null, size?: number | null, alt?: string | null } | null }> }> };
