import { DialogProps } from './Dialog.types'; export declare const DialogHelper: { show: (props: DialogProps, containerId?: string) => void; showSmall: (props: DialogProps, containerId?: string) => void; showMedium: (props: DialogProps, containerId?: string) => void; close: (containerId?: string) => boolean; };