import React from 'react'; import { type GlassVariant } from '../../../lib/glass'; export interface SimpleColumnCell { title: React.ReactNode; subtitle?: React.ReactNode; align?: 'start' | 'end'; } export interface SimpleColumnRow { id?: string | number; left: SimpleColumnCell; right: SimpleColumnCell; /** * Force highlight regardless of stripe order */ accent?: boolean; } export interface SimpleColumnLayoutProps extends React.HTMLAttributes { headerLeft?: React.ReactNode; headerRight?: React.ReactNode; rows: SimpleColumnRow[]; /** * Alternate row backgrounds to match Figma visual */ striped?: boolean; /** Glass morphism variant */ glass?: GlassVariant; } /** * SimpleColumnLayout Component * * @deprecated This component is now a wrapper around Table with layout="simple". * Consider using Table directly with layout="simple" for better type safety and features. * * This component is maintained for backward compatibility. */ export declare const SimpleColumnLayout: React.ForwardRefExoticComponent>; export default SimpleColumnLayout; //# sourceMappingURL=SimpleColumnLayout.d.ts.map