Polite.d.ts 233 B

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