/**
 * @ToDo Define your global variables here.
 */
export type IAppContext = {
    app: {
        language: number;
    };
    theme: {
        color: string;
    };
};
