///
/**
* 轮廓缺口组件的属性
*/
export interface NotchedOutlineProps {
/**
* 设置为`true`,则会形成缺口。
*/
notched?: boolean;
/**
* 缺口宽度
*/
notchWidth?: number;
/**
* 是否显示方角
*/
square?: boolean;
}
/**
* 有缺口的轮廓组件。一般用于轮廓模式的输入框、下拉选择框。
*
* @param props 组件属性
*/
declare const NotchedOutline: React.FC;
export default NotchedOutline;