import { FC } from 'react'; import { SwitchProps } from 'react-native'; export interface SwitchRowProps extends SwitchProps { title: string; styles?: SwitchRowStyles; } export declare const SwitchRow: FC; declare const defaultStyles: (theme: import("../BrandConfigProvider").Theme) => readonly ["SwitchRow", import("../BrandConfigProvider/styles/createStyles").NamedStyles<{ container: { flexDirection: "row"; alignItems: "center"; }; headerText: { fontWeight: "bold"; }; textWrapper: { flex: number; }; }>]; declare module './../BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } } export type SwitchRowStyles = NamedStylesProp; export {};