import { ButtonStyleOptions } from '../button'; import { DialogShowProps, ModalContentProps } from './modal-service.doc'; export interface DialogButtonProps extends ButtonStyleOptions { /** * Text on the Button */ text: string; /** * Value to identify the Button, with which the showDialog method * will resolved. */ value: T; } export declare type DialogProps = Partial> & DialogShowProps & { className?: string; };