import { type Action, type UnknownAction } from '../actions'; export type State = string | null; export declare function getInitialState(locale?: string | null): State; export declare function getLocale(state: State): string | null; export declare function reducer(state: State | undefined, action: Action | UnknownAction): State; //# sourceMappingURL=locale.d.ts.map