import { State } from './types';
import { UserProfile } from '@kinde/js-utils';
type Action = {
    type: "INITIALISED";
    user: UserProfile;
} | {
    type: "ERROR";
    error: string;
};
export declare const reducer: (state: State, action: Action) => State;
export {};
//# sourceMappingURL=reducer.d.ts.map