import React, { ReactNode } from "react"; interface PriceTableProps { title: string; price: string; priceLabel?: string; color?: "pink" | "sky" | "emerald" | "amber" | "blue"; size?: "xs" | "sm"; className?: string; children: ReactNode; magnified?: boolean; } export declare function PriceTable({ title, price, color, size, priceLabel, className, magnified, children }: PriceTableProps): React.JSX.Element; interface PriceTableItemProps { label: ReactNode; size?: "xs" | "sm"; variant?: "check" | "dash" | "xmark"; className?: string; } export declare namespace PriceTable { var Item: ({ label, variant, size, className, }: PriceTableItemProps) => React.JSX.Element; } interface PriceTableActionContainerProps { children: ReactNode; size?: "xs" | "sm"; position?: "top" | "bottom"; } export declare namespace PriceTable { var ActionContainer: ({ children, size, position, }: PriceTableActionContainerProps) => React.JSX.Element; } interface PriceTableContainerProps { children: ReactNode; } export declare namespace PriceTable { var Container: ({ children }: PriceTableContainerProps) => React.JSX.Element; } //# sourceMappingURL=PriceTable.d.ts.map