import type { CheckboxFieldClientProps } from '@payloadcms/ui/fields/Checkbox'; /** * Field which displays either a checkbox to set the page to be root page or a message if the page is the root page. */ export declare const IsRootPageStatus: React.FC<{ hasRootPage: boolean; readOnly?: boolean; } & CheckboxFieldClientProps>;