import { IBlockData } from "../../../../../typings"; export declare type IPage = IBlockData<{ "background-color"?: string; width?: string; pageSize: string; marginTop: string; marginBottom: string; marginLeft: string; marginRight: string; }, { breakpoint?: string; headAttributes: string; fonts?: { name: string; href: string; }[]; headStyles?: { content?: string; inline?: "inline"; }[]; responsive?: boolean; "font-family": string; "font-size": string; "line-height": string; "text-color": string; "user-style"?: { content?: string; inline?: "inline"; }; "content-background-color"?: string; }>; export declare const Page: import("../../../../../typings").IBlock;