/// interface IProps { id: string; title: string; description: string; limit?: number; link: string; } export declare const ViberCard: ({ title, link, description, limit }: IProps) => JSX.Element; export {};