const [lazyParams, setLazyParams]: [DataTablePFSEvent, (lazyParams: DataTablePFSEvent) => void] = React.useState<DataTablePFSEvent>({
first: 0,
rows: 50,
page: 0,
sortField: "name",
sortOrder: 1,
multiSortMeta: null,
filters: {
global: { value: null, matchMode: FilterMatchMode.CONTAINS },
name: { operator: FilterOperator.AND, constraints: [{ value: null, matchMode: FilterMatchMode.STARTS_WITH }] },
dob: { operator: FilterOperator.AND, constraints: [{ value: null, matchMode: FilterMatchMode.EQUALS }] },
dod: { operator: FilterOperator.AND, constraints: [{ value: null, matchMode: FilterMatchMode.EQUALS }] },
nationality: { value: null, matchMode: FilterMatchMode.EQUALS },
work_count: { value: null, matchMode: FilterMatchMode.EQUALS },
story_count: { value: null, matchMode: FilterMatchMode.EQUALS },
roles: { value: null, matchMode: FilterMatchMode.EQUALS }
}
});