minishouyin/node_modules/rc-select/lib/BaseSelect/Polite.d.ts

8 lines
233 B
TypeScript
Raw Permalink Normal View History

2025-11-12 11:35:57 +08:00
import * as React from 'react';
import type { DisplayValueType } from '.';
export interface PoliteProps {
visible: boolean;
values: DisplayValueType[];
}
export default function Polite(props: PoliteProps): React.JSX.Element;