export declare const WINDOW_CLASSNAME = "k-window";
declare const options: {
    themeColor: ("dark" | "light" | "primary")[];
};
export type KendoWindowOptions = {
    themeColor?: (typeof options.themeColor)[number] | null;
};
export type KendoWindowProps = KendoWindowOptions & {
    title?: string;
    actions?: string[];
    minimized?: boolean;
    actionButtons?: React.JSX.Element;
    actionButtonsAlign?: "start" | "end" | "center" | "stretched";
};
export declare const Window: {
    (props: KendoWindowProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    states: any[];
    options: {
        themeColor: ("dark" | "light" | "primary")[];
    };
    className: string;
    defaultOptions: {};
};
export default Window;
