import { SORT_DIRECTION } from '../defs'; interface Person { id: number; firstName: string; lastName: string; age: number; birthday: string; deposits?: number; } export declare const sortByFName: (sortDirection: SORT_DIRECTION) => (a: Person, b: Person) => number; export declare const sortByLName: (sortDirection: SORT_DIRECTION) => (a: Person, b: Person) => number; export declare const sortById: (sortDirection: SORT_DIRECTION) => (a: Person, b: Person) => number; export declare const sortByAge: (sortDirection: SORT_DIRECTION) => (a: Person, b: Person) => number; export declare const sortByDate: (sortDirection: SORT_DIRECTION) => (a: Person, b: Person) => number; export declare const extractData: (dataTable: any, pageNumber: number, pageSize: number) => any; export declare const characters: ({ id: number; firstName: string; lastName: string; age: number; birthday: string; fullname: string; gender: string; unread: boolean; deposits: number; expanded?: undefined; selected?: undefined; } | { id: number; firstName: string; lastName: string; age: number; birthday: string; fullname: string; gender: string; expanded: boolean; deposits: number; selected: boolean; unread?: undefined; } | { id: number; firstName: string; lastName: string; age: number; birthday: string; fullname: string; gender: string; deposits: number; unread?: undefined; expanded?: undefined; selected?: undefined; })[]; export declare const dataForColumns: { id: string; col1: string; col2: string; col3: string; col4: string; col5: string; col6: string; col7: string; col8: string; col9: string; col10: string; col11: string; col12: string; col13: string; col14: string; col15: string; col16: string; col17: string; col18: string; col19: string; col20: string; }[]; export declare const dataForColumnsFilter: { ticketPriority: string; applnName: string; businessService: string; businessGroups: string; ticketStatus: string; criticalityRisk: number; }[]; export {}; //# sourceMappingURL=ultils.sample.d.ts.map