export type ComparisonFeatureRow = { featureName: string; isPhotoroomFeature: boolean; isOtherAppFeature: boolean; }; export type ComparisonTableProps = Readonly<{ title: string; otherAppName: string; photoroomIcon: React.ReactNode; otherAppIcon: React.ReactNode; features: ComparisonFeatureRow[]; includedLabel: string; excludedLabel: string; }> & Omit, "children">; export declare const ComparisonTable: ({ title, otherAppName, photoroomIcon, otherAppIcon, features, includedLabel, excludedLabel, className, ...rest }: ComparisonTableProps) => import("react").JSX.Element; //# sourceMappingURL=ComparisonTable.d.ts.map