export declare type RdsCodeSortType = 'VALUE' | 'NAME' | 'NATURAL'; export declare type RdsCodeSortDirection = 'ASC' | 'DESC'; export declare class RdsTabulationSortOptions { rowType: RdsCodeSortType; rowDirection: RdsCodeSortDirection; colType: RdsCodeSortType; colDirection: RdsCodeSortDirection; constructor(rowType?: RdsCodeSortType, rowDirection?: RdsCodeSortDirection, colType?: RdsCodeSortType, colDirection?: RdsCodeSortDirection); }