import { Locale } from '../config-provider';
export interface Placement {
    [propName: string]: string | number;
}
export type TransformPattern = string | Function | Array<string>;
export declare function useLocaleReceiver<T extends keyof Locale>(componentName: T, defaultLocale?: Locale[T] | Function): [Locale[T], Function];
