import { FieldValues, UseFormRegister, Path } from 'react-hook-form'; import { t } from '@grafana/i18n'; import { Checkbox, Field } from '@grafana/ui'; export function EnablePushToConfiguredBranchOption({ register, registerName, readOnly, }: { register: UseFormRegister; registerName: Path; readOnly: boolean; }) { return ( ); }