import { ReactElement } from 'react'; import { NativeElementPropsWithoutKeyAndRef } from '../utils/jsx-types'; import { FilterProps } from './Filter'; export interface FilterLineProps extends Omit, 'children'> { /** * The content of the filter line, must be Filter component(s). */ children: ReactElement | ReactElement[]; } /** * 篩選器中的單行條件列,包含一或多個 Filter 欄位。 * * 透過 Grid 排版將 Filter 子元件橫向排列; * 需作為 FilterArea 的直接子元件使用。 * * @example * ```tsx * import { Filter, FilterLine } from '@mezzanine-ui/react'; * * * ... * ... * * ``` * * @see {@link FilterArea} 管理多個 FilterLine 的容器元件 * @see {@link Filter} 包裝單一篩選欄位的元件 */ declare const FilterLine: import("react").ForwardRefExoticComponent>; export default FilterLine;