import React from 'react'; export interface ISummaryRowProps extends Omit, 'placeholder'> { /** Data row label */ label: string; /** Data associated with label */ value?: React.ReactNode; /** Placeholder for value if value is not set */ placeholder?: React.ReactNode; /** Is the summary value greyed / locked out */ locked?: boolean; } export declare const Row: ({ label, value, placeholder, locked, ...props }: ISummaryRowProps) => React.JSX.Element; //# sourceMappingURL=Row.d.ts.map