import type { ResourceBase } from "./Common";
export declare type Auth0ApplicationType = 'resource.auth0.application';
export interface Auth0Application extends ResourceBase {
    type: Auth0ApplicationType;
    clientId: string;
}
export declare const isAuth0Application: import("@altostra/type-validations").ObjectOfTypeValidation<Auth0Application>;
