import type { IStore } from '../store';
export type Config = {
    store: IStore;
    locale: string;
};
export type ConfigInput = Partial<Config>;
