import React from 'react'; export interface ListProps { price: number; month: number; trial?: number; currency: string; infoCy?: { trial?: number; infoCurrency?: string; infoPrice?: string; }; } declare const List: React.FC; export default List;