import * as React from 'react'; export interface PinProps { kind?: string; } export interface PinExtendedProps extends PinProps, Omit {} declare const Pin: React.FC; export { Pin };