export interface PersonInfo { name: string; nationalId: string; dayJob: string; supervisor: string; dateReceived: string; message: string; age: number; forceSensitive: boolean; homeSystem: string; skills: string[]; } export declare const columns: import("@tanstack/react-table").AccessorKeyColumnDef[]; export declare const homeSystemOptions: string[]; export declare const skillOptions: string[]; export declare const sampleData: PersonInfo[];