import type { FC, ReactNode } from "react"; import { type PrimaryButtonProps } from "../ButtonV2/ButtonProps.type"; export type FullPageModalHeaderProps = { title: string; /** * @deprecated * Use the `actions` prop to render any button(s) * or other component(s) automatically in the correct area. */ primaryButtonProps?: PrimaryButtonProps; actions?: ReactNode; }; export declare const FullPageModalHeader: FC;