import { default as React } from 'react'; type MainProps = React.HTMLAttributes & { questionName?: string; error?: boolean; }; type LabelProps = { htmlFor?: string; children: React.ReactNode; }; type DivProps = { children: React.ReactNode; }; export declare const Row: { Main: ({ className, questionName, error, ...props }: MainProps) => import("react/jsx-runtime").JSX.Element; Label: ({ htmlFor, children }: LabelProps) => import("react/jsx-runtime").JSX.Element; SubLabel: ({ children }: DivProps) => import("react/jsx-runtime").JSX.Element; Content: ({ children }: DivProps) => import("react/jsx-runtime").JSX.Element; Value: ({ children }: DivProps) => import("react/jsx-runtime").JSX.Element; Actions: ({ children }: DivProps) => import("react/jsx-runtime").JSX.Element; }; export {};