UNPKG

233 BTypeScriptView Raw
1import * as React from 'react';
2import type { DisplayValueType } from '.';
3export interface PoliteProps {
4 visible: boolean;
5 values: DisplayValueType[];
6}
7export default function Polite(props: PoliteProps): React.JSX.Element;