zy-react-library/components/SelectTree/Area/index.d.ts

18 lines
435 B
TypeScript
Raw Permalink Normal View History

import type { FC } from "react";
import type { BasicSelectTreeProps } from "../Basic";
/**
*
*/
export interface AreaSelectTreeProps extends Omit<BasicSelectTreeProps, "treeData" | "placeholder" | "nameKey" | "idKey" | "childrenKey"> {
/** 占位符,默认"属地" */
placeholder?: string;
}
/**
*
*/
declare const AreaSelectTree: FC<AreaSelectTreeProps>;
export default AreaSelectTree;