/**
 * Fetches information about the current developer.
 */
export declare function queryMe(): Promise<{
    me: {
        __typename: "Me";
        devId: number;
        displayName: string;
        email: string | null;
        admin: boolean;
    };
}>;
