import type { FC, HTMLAttributes, ReactNode, Ref } from 'react'; import { type TestableProps } from '../../utils/testId'; export interface PageProps extends HTMLAttributes, TestableProps { ref?: Ref; name?: string; title?: string; fullSize?: boolean; fixedHeight?: boolean; contained?: boolean; children?: ReactNode; } /** * @example * ```tsx * * * API Attack Surface * *** * * {children} * * ``` */ export declare const Page: FC;