import type { PropsWithChildren } from "react"; import React from "react"; import type { HeaderProps, ModalActionsProps, ModalContentProps as ModalContainerProps } from "./Modal.types"; export declare function ModalHeader({ title, children }: HeaderProps): React.JSX.Element; export declare function ModalActions({ primary, secondary, tertiary, }: ModalActionsProps): React.JSX.Element; export declare function ModalActivator({ children }: PropsWithChildren): React.JSX.Element; /** * Background overlay for the modal. Used in the ModalContent. */ export declare function ModalOverlay({ children }: PropsWithChildren): React.JSX.Element; export declare function ModalContent({ children }: ModalContainerProps): React.JSX.Element;