import { render } from "@testing-library/react";
import { PublicConfig } from "..";
export declare const publicConfig: PublicConfig;
declare type P = Parameters<typeof render>;
export declare function renderApp(ui: P[0], options?: P[1]): ReturnType<typeof render>;
export declare const signedInTokenContentResponse: {
    data: {
        value: string;
        context: {
            tokenData: {
                userId: string;
                provider: string;
                accountStatus: string;
                iat: number;
                exp: number;
            };
            error: null;
        };
    };
};
export declare const signedOutTokenContentResponse: {
    data: {
        value: string;
        context: {
            tokenData: null;
            error: null;
        };
    };
};
export * from "@testing-library/react";
