import { ReactNode, FC } from 'react'; import { LayoutProps } from '@servicetitan/design-system'; export interface SectionProps { title: ReactNode; text?: ReactNode | string; children: ReactNode; qaPrefix?: string; className?: string; layout?: LayoutProps['type']; withoutBorders?: boolean; } export declare const SettingsSection: FC; //# sourceMappingURL=index.d.ts.map