/// export declare function ListScreen({ name, singular, plural, filterName, list: { search, deletable, body, filters, props, sortBuilder }, }: ListScreenProps): JSX.Element; export interface ListScreenProps { name: string; filterName?: string; singular: string; plural: string; list?: { search?: boolean; deletable?: boolean; props?: any; body?: boolean; filters?: any; sortBuilder?: Function; }; } export default ListScreen; //# sourceMappingURL=ListScreen.d.ts.map