import * as React from "react";
import { KendoComponent } from "../_types/component";
declare const states: never[];
export type KendoWindowContentProps = {
    children?: React.ReactNode;
};
export type KendoWindowContentState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const WindowContent: KendoComponent<KendoWindowContentProps & KendoWindowContentState & React.HTMLAttributes<HTMLDivElement>>;
export default WindowContent;
