import { ReactElement, ReactNode } from "react"; import { BoxProps } from "./Box"; import { ButtonOutlineProps } from "./ButtonOutline"; import { ButtonPrimaryProps } from "./ButtonPrimary"; import { ButtonSecondaryProps } from "./ButtonSecondary"; import { HeadingProps } from "./Heading"; declare type ActionProps = ButtonPrimaryProps | ButtonSecondaryProps | ButtonOutlineProps; export declare type PageHeaderProps = { children?: ReactNode | string; variant?: "stack" | "overlap"; lineClamp?: HeadingProps["lineClamp"]; actions?: ReactElement | ReactElement[]; meta?: ReactNode; maxWidth?: BoxProps["maxWidth"]; }; export declare const PageHeader: ({ children, lineClamp, variant, actions, meta, maxWidth, }: PageHeaderProps) => import("@emotion/react/jsx-runtime").JSX.Element; export {};