import type { PropsWithChildren } from 'react';
import { type BoxProps } from './Box';
type SettingsRowProps = BoxProps & PropsWithChildren<{
    title: string;
    description: string;
}>;
export declare const SettingsRow: ({ title, description, children, className, }: SettingsRowProps) => import("react/jsx-runtime").JSX.Element;
export {};
