export interface Address { street: string; apartment: string; postalCode: string; city: string; countryCode: string; } export declare class SlAddress { helpText: string; errorText: string; label: string; disabled: boolean; value: Address; countries: string[]; countryData: { [name: string]: string; }; componentWillLoad(): void; render(): any; }