import { FieldMetadata } from '@genesislcap/foundation-comms'; import { ColDef } from 'ag-grid-community'; /** * Returns a filter type based on the Grid Pro field/column type. * @param type - The type of the field/column * @returns The ag-grid filter type */ export declare function getFilterByFieldType(type: string): string; /** * Returns the filter params based on the Grid Pro field/column type. * @param field - The field metadata * @returns the filter params for the specified field type * @remarks Currently only returns a default filter params object, for all field types * @alpha */ export declare function getClientSideFilterParamsByFieldType(field: FieldMetadata): ColDef['filterParams'] | any; //# sourceMappingURL=client-side.grid-definitions.d.ts.map