import type { SwitcherRowProps } from './types'; import { ReactNode } from 'react'; /** * Блок вывода полей-переключателей (Checkbox, Toggle, RadioButton). * @param props Свойства. * @return Элемент. */ export declare function SwitcherRow({ children, className, style, textAlign, fieldPosition, 'data-testid': testId, }: SwitcherRowProps): import("react").JSX.Element; export declare namespace SwitcherRow { var Label: typeof SwitcherLabel; var Comment: typeof SwitcherComment; } /** * Слот ярлыка. * @param props Свойства. * @return Элемент. */ declare function SwitcherLabel({ children }: { children?: ReactNode; }): import("react").JSX.Element; /** * Слот комментария. * @param props Свойства. * @return Элемент. */ declare function SwitcherComment({ children }: { children?: ReactNode; }): import("react").JSX.Element; export {};