import { LayoutType } from '../interfaces/types';
export declare const createLayoutContainer: (block: any) => LayoutType;
export declare const createLayoutRow: (block: any) => LayoutType;
export declare const createLayoutBlock: (block: any) => LayoutType;
export declare const createRow: (layout: LayoutType[]) => LayoutType;
export declare const createCol: (layout: LayoutType[]) => LayoutType;
export declare const addOrientationCol: (layouts: LayoutType[]) => LayoutType[];
