export declare const ROW_SIZE_TOKENS: { readonly small: { readonly rowHeight: 20; readonly cellVerticalPadding: 4; readonly cellHorizontalPadding: 4; readonly textfieldSize: "xs"; }; readonly medium: { readonly rowHeight: 32; readonly cellVerticalPadding: 7; readonly cellHorizontalPadding: 6; readonly textfieldSize: "s"; }; readonly big: { readonly rowHeight: 48; readonly cellVerticalPadding: 12; readonly cellHorizontalPadding: 16; readonly textfieldSize: "s"; }; }; export type RowSizeTokens = typeof ROW_SIZE_TOKENS; type RowSizeName = keyof RowSizeTokens; export type RowSizeToken = RowSizeTokens[RowSizeName]; export declare const getRowHeightBySize: (size: RowSizeName) => 20 | 32 | 48; export declare const getTextfieldSizeByRowSize: (size: RowSizeName) => "s" | "xs"; export {};