import type { PatchesOption, TravelsOptions } from './type'; import { Travels } from './travels'; /** * Create a new Travels instance with auto archive mode */ export declare function createTravels(initialState: S, options?: Omit, 'autoArchive'> & { autoArchive?: true; }): Travels; /** * Create a new Travels instance with manual archive mode */ export declare function createTravels(initialState: S, options: Omit, 'autoArchive'> & { autoArchive: false; }): Travels; //# sourceMappingURL=createTravels.d.ts.map