import type { TextFieldClient } from 'payload'; import type { DefaultFilterProps } from '../types.js'; export type TextFilterProps = { readonly field: TextFieldClient; readonly onChange: (val: string) => void; readonly value: string | string[]; } & DefaultFilterProps; //# sourceMappingURL=types.d.ts.map