import { KendoComponent } from '../_types/component';
export declare const WINDOW_CLASSNAME = "k-window";
export type KendoWindowOptions = {};
export type KendoWindowProps = KendoWindowOptions & {
    title?: string;
    actions?: string[];
    minimized?: boolean;
    actionButtons?: React.JSX.Element;
    actionButtonsAlign?: "start" | "end" | "center" | "stretched";
};
export declare const Window: KendoComponent<KendoWindowProps & React.HTMLAttributes<HTMLDivElement>>;
export default Window;
