import { ReactNode } from "react"; type Props = { title: string | ReactNode; onClose: () => void; closeAccessibilityLabel: string; }; /** * A header for a modals and bottom sheet. * @param title - The title of the modal. * @param onClose - The function to call when the close button is pressed. * @param closeAccessibilityLabel - The accessibility label for the close button. * */ export declare const ModalBSHeader: ({ title, onClose, closeAccessibilityLabel }: Props) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ModalBSHeader.d.ts.map