copper-ui
Version:
Modern React UI components library with TypeScript support, built on top of Ant Design
17 lines • 791 B
TypeScript
import { ReactNode } from '../../../../../node_modules/.pnpm/react@19.1.1/node_modules/react';
import { TTableFilterProps, TTableFilterType } from '../../model/filter.types';
export type FiltersProps = {
value: unknown;
onChange: unknown;
onReset: () => void;
children: ReactNode;
} & Record<string, unknown>;
declare const FilterCommon: import('../../../../../node_modules/.pnpm/react@19.1.1/node_modules/react').MemoExoticComponent<({ fieldName, filterProps, filterType, children, className, }: {
className?: string;
children?: ReactNode;
filterType?: TTableFilterType;
fieldName: string;
filterProps?: TTableFilterProps;
}) => import("react/jsx-runtime").JSX.Element | null>;
export default FilterCommon;
//# sourceMappingURL=col-filter-common.d.ts.map