import type React from "react"; import type { WidthProps } from "styled-system"; export interface Props { isOpen?: boolean; "aria-label"?: string; onClose?: () => void; title?: string; helpText?: React.ReactNode; closeButtonLabel?: string; hideCloseButton?: boolean; secondaryAction?: (props: { onClose: () => void; }) => React.ReactElement; primaryAction?: (props: { onClose: () => void; }) => React.ReactElement; disableCloseOnOverlayClick?: boolean; sheetWidth?: WidthProps["width"]; contentWidth?: WidthProps["width"]; children?: React.ReactNode; } export default function BottomSheet({ title, helpText, closeButtonLabel, secondaryAction, primaryAction, isOpen, onClose, sheetWidth, contentWidth, disableCloseOnOverlayClick, hideCloseButton, children, ...props }: Props): import("react/jsx-runtime").JSX.Element;