import { KendoComponent } from '../_types/component';
export declare const TILELAYOUT_CLASSNAME = "k-tilelayout";
export type KendoTileLayoutProps = {
    gap?: string;
    columns?: number;
    columnWidth?: string;
    rowHeight?: string;
    style?: React.CSSProperties;
    children?: React.ReactNode;
};
export declare const TileLayout: KendoComponent<KendoTileLayoutProps & React.HTMLAttributes<HTMLSpanElement>>;
export default TileLayout;
