export type KendoLayoutProps = {
    gap?: string;
    type?: null | 'stack' | 'flex' | 'grid';
    orientation?: null | 'horizontal' | 'vertical';
    alignItems?: null | 'start' | 'center' | 'end' | 'stretch';
    justifyContent?: null | 'start' | 'center' | 'end' | 'stretch';
    justifyItems?: null | 'start' | 'center' | 'end' | 'stretch';
    wrap?: boolean;
};
export declare const Layout: {
    (props: KendoLayoutProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    states: any[];
    options: {};
};
export default Layout;
