import { AnyConstructor } from '../../meta';
import { SelectionAddress, SelectionAny } from '../internal';
/**
 * @ignore
 */
export declare const SelectionWithAddressMixin: <C extends AnyConstructor<SelectionAny>>(Base: C) => C & AnyConstructor<SelectionWithAddressMixin>;
export interface SelectionWithAddressMixin {
    getAddress(): SelectionAddress;
    getPhoneNumber(): SelectionAny;
    getEmailAddress(): SelectionAny;
    getFaxAddress(): SelectionAny;
    getWebAddress(): SelectionAny;
}
