import { GallerySettingType, GridViewProps } from "../types"; import { FilterType } from "../../filter/types"; export declare type GalleryProps = { gallery: GallerySettingType; filter: FilterType; pagination: any; rowKey: ((record: Record) => string) | string; loading: boolean; onDataSourceChange: GridViewProps['onDataSourceChange']; };