import type { DaDataSuggestion, Nullable } from '../../core-types';
export interface DaDataEmail {
    local: Nullable<string>;
    domain: Nullable<string>;
    type: null;
    qc: null;
    source: null;
}
export type DaDataEmailSuggestion = DaDataSuggestion<DaDataEmail>;
