export interface AuthenticateProps {
    prismaticUrl?: string;
    token: string;
}
export declare const authenticate: (options: AuthenticateProps) => Promise<void>;
