export declare const Layouts: LayoutsType; export interface LayoutItem { key: string; rowspan?: number; colspan?: number; } export declare type Layout = LayoutItem[][]; export interface LayoutsType { number: Layout; tel: Layout; phone: Layout; decimals: Layout; negativeNumber: Layout; negativeDecimals: Layout; }