import type { TPricingTableExpanded } from '@blocklet/payment-types';
type Props = {
    table: TPricingTableExpanded;
    onSelect: (priceId: string, currencyId: string) => void;
    alignItems?: 'center' | 'left';
    mode?: 'checkout' | 'select';
    interval?: string;
    hideCurrency?: boolean;
};
export default function PricingTable({ table, alignItems, interval, mode, onSelect, hideCurrency, }: Props): import("react").JSX.Element;
export {};
