import React from 'react'; import { RowProps } from '../../../Grid/typings'; import { LabelProps } from '../../../Label/typings'; export interface LayoutProps { layout?: { row?: RowProps; label?: LabelProps; }; } declare const Layout: React.FC; export declare const vertical: { row?: RowProps; label?: LabelProps; }; export declare const horizontal: { row?: RowProps; label?: LabelProps; }; export declare const oneline: { row?: RowProps; label?: LabelProps; }; export declare const inline: { row?: RowProps; label?: LabelProps; }; export declare const login: { row?: RowProps; label?: LabelProps; }; export declare function maskLayout(theme: Required['layout'], layout?: Required['layout'], options?: { depth: boolean; }): Required['layout']; export declare function maskLayout

(theme: Required['layout'], layout?: (...params: P) => Required['layout'], options?: { depth: boolean; }): (...params: P) => Required['layout']; export default Layout;