import { Credentials, ClientId, AccountId } from '../../common';
import { OAuthData } from '../../data';
export type AccountAuthData = {
    clientId: ClientId;
    accountId: AccountId;
    oauth: OAuthData;
};
export type BffAuthData = {
    clientId: ClientId;
    accountId: AccountId;
    oauth: OAuthData;
};
export type AuthState = {
    credentials?: Credentials;
    accountAuth?: AccountAuthData;
    bffAuth?: BffAuthData;
};
//# sourceMappingURL=auth.state.d.ts.map