import React from 'react'; import { ChurnReason } from '../../../../models'; export type ChurnReasonCodesProps = { items: ChurnReason[]; onChange: (value: string) => void; selectedValue: string; }; export declare const ChurnReasonCodes: ({ items, onChange, selectedValue, }: ChurnReasonCodesProps) => React.JSX.Element;