import {Axios} from "axios";

declare global {
    interface Window {
        axios: Axios;
        csrfToken: string;
        __REDUX_DEVTOOLS_EXTENSION__: any;
        feather: any;
    }

    interface PhpEnum<ValueType = string> {
        name: string;
        value: ValueType;
    }
}
