import React from "react";
export declare const PriceTable: {
    ({ children }: {
        children: React.ReactNode;
    }): React.JSX.Element;
    Row: ({ label, value, discounted, }: PriceTableRowProps) => React.JSX.Element;
};
export interface PriceTableRowProps {
    label: string;
    value: string;
    discounted?: boolean;
}
export declare const PriceTableRow: ({ label, value, discounted, }: PriceTableRowProps) => React.JSX.Element;
export default PriceTable;
