/// interface Props { id: string; onPin: (val: string) => void; onUnpin: (val: string) => void; pinned: boolean; } declare const PinButton: ({ id, onPin, onUnpin, pinned }: Props) => JSX.Element; export default PinButton;