import { type SimpleRowProps } from '../ui/SimpleRow';
type SimpleRowContainerProps = Omit<SimpleRowProps, 'title'> & {
    title: string;
    highlight?: boolean;
};
declare const SimpleRowContainer: ({ title, highlight, style, ...rest }: SimpleRowContainerProps) => import("react").JSX.Element;
export default SimpleRowContainer;
//# sourceMappingURL=SimpleRowContainer.d.ts.map