import React from 'react'; export declare type IllustrationType = { small: string; large: string; }; export declare type SeaPageProps = Readonly<{ children: React.ReactNode; heading: string; illustationUrl: IllustrationType; }>; export declare const SeaPage: ({ children, heading, illustationUrl }: SeaPageProps) => JSX.Element;