import { TiplistProps } from "@etsoo/materialui";
import { PersonListDto } from "../../dto/person/PersonListDto";
import { PersonListRQ } from "../../rq/person/PersonListRQ";
/**
 * Person tiplist properties
 * 人员提示列表属性
 */
export type PersonTiplistProps = Omit<TiplistProps<PersonListDto, "id">, "loadData" | "label" | "name"> & {
    /**
     * Label
     */
    label?: string;
    /**
     * Name
     */
    name?: string;
    /**
     * Default request data
     */
    rq?: Partial<PersonListRQ>;
};
/**
 * Person tiplist
 * 人员提示列表
 * @param props Properties
 * @returns Component
 */
export declare function PersonTiplist(props: PersonTiplistProps): import("react/jsx-runtime").JSX.Element;
