import { EventEmitter } from '../../stencil-public-runtime';
interface Locale {
    name: string;
    value: string;
}
export declare class RadhLocaleSelect {
    sendLocale: EventEmitter;
    locales: string;
    innerLocales: Locale[];
    parseLocale(newValue: string): void;
    componentWillLoad(): void;
    handleSelect(event: any): void;
    render(): any;
}
export {};
