import { KendoComponent } from '../_types/component';
export declare const DIALOG_CLASSNAME = "k-dialog";
export type KendoDialogOptions = {};
export type KendoDialogProps = KendoDialogOptions & {
    title?: string;
    actions?: string[];
    actionButtons?: React.JSX.Element;
    actionButtonsAlign?: "start" | "end" | "center" | "stretched";
    modal?: boolean;
};
export declare const Dialog: KendoComponent<KendoDialogProps & React.HTMLAttributes<HTMLDivElement>>;
export default Dialog;
