import React from 'react'; declare type Props = { 'data-qa'?: string; ddiOptions: DdiSelectorProps[]; defaultDdiCode?: string; disabled?: boolean; onDdiChange: Function; }; declare const DDISelector: React.FC; export interface DdiSelectorProps { flag: string | JSX.Element; code: string; } export default DDISelector;