import { FC } from 'react'; import { WearableIntegration } from './WearableTypes'; export interface SyncTypeSelectionRowProps { disabled?: boolean; onUpdate: (ehrId: string) => any; selectedEHRId: string; styles?: SyncTypeSelectionRowStyles; syncTypeTitle: string; syncTypeOptions: WearableIntegration[]; testID?: string; } export declare const SyncTypeSelectionRow: FC; declare const defaultStyles: (theme: import("../BrandConfigProvider").Theme) => readonly ["SyncTypeSelectionRow", import("../BrandConfigProvider/styles/createStyles").NamedStyles>]; declare module './../BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } } export type SyncTypeSelectionRowStyles = NamedStylesProp; export {};