import { FwModalProps } from '../components/fw-modal/index.types'; export declare interface ModalServiceProps extends Omit { onConfirm?: () => void; onCancel?: () => void; } export declare const modalService: (options?: ModalServiceProps) => { open: () => void; close: () => void; };