import React, { FC } from 'react';
declare const Pin: FC<{
    src?: string;
    title?: string;
    subTitle?: string;
    onClick?: () => void;
    children?: React.ReactNode;
    active?: boolean;
}>;
export default Pin;
