import { BrowserStorageState } from './BrowserStorageState';
/**
 * Specifies how to reference a flow from which to restore browser state.
 */
export type BrowserStateReference = {
    readonly type: 'id';
    readonly value: string;
} | {
    readonly type: 'name';
    readonly value: string;
} | {
    readonly type: 'json';
    readonly value: BrowserStorageState;
};
//# sourceMappingURL=BrowserStateFlowReference.d.ts.map