You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
477 B
19 lines
477 B
import React from 'react';
|
|
import { FooterProps } from './Footer';
|
|
import './index.less';
|
|
export interface DropdownProps {
|
|
/**
|
|
* 自定义前缀
|
|
*/
|
|
prefixCls?: string;
|
|
label?: React.ReactNode;
|
|
footer?: FooterProps;
|
|
hideWhenClick?: boolean;
|
|
padding?: number;
|
|
disabled?: boolean;
|
|
onVisibleChange?: (visible: boolean) => void;
|
|
visible?: boolean;
|
|
}
|
|
declare const FilterDropdown: React.FC<DropdownProps>;
|
|
export default FilterDropdown;
|