import { ComponentInterface, type EventEmitter } from '../../stencil-public-runtime'; import type { ModalProps } from '../BaseModal/modal-interface'; export declare class BiDrawer implements ModalProps, ComponentInterface { /** * If true, clicking on the backdrop will not close the drawer. */ disableBackdropClick: boolean; /** * The position of the drawer. Can be 'top', 'bottom', 'left', or 'right'. */ position: 'top' | 'bottom' | 'left' | 'right'; /** * The background color of the drawer. Can be 'white' or 'blue-strong'. */ backgroundColor: 'white' | 'primary' | 'neutral'; /** If true, the drawer is open. */ isOpen: boolean; /** Event emitted when the dialog is closed. */ close: EventEmitter; render(): any; }