import { DialogProps } from './Dialog'; export default function confirm(title: string, message: any, actions: { text: string; onClick: () => void; className: string; }[] | undefined, restProps: Omit): { close: () => void; };