import * as React from 'react'; import { ModalState } from '../ModalContext'; export declare const DrawerTrigger: ({ id, children, showCover, canCloseOnEsc, coverStyles }: { id: string; /** Whether to show a clickable semi-opaque Cover behind the flyout */ showCover: boolean; /** Whether to prevent the body from scrolling when flyout is open */ canCloseOnEsc?: boolean; coverStyles?: React.CSSProperties; children: (args: Partial) => React.ReactNode; }) => React.JSX.Element;