import React from 'react'; export interface TaxRate { uuid: string; name: string; rate: number; isCompound: boolean; priority: number; country: string; province: string; postcode: string; updateApi: string; deleteApi: string; } interface RateProps { rate: TaxRate; getTaxClasses: (options?: { requestPolicy?: string; }) => Promise | void; } declare function Rate({ rate, getTaxClasses }: RateProps): React.JSX.Element; export { Rate };