export type Fallback = 'none' | 'animate' | 'swap';
export type Direction = 'forward' | 'back';
export type NavigationTypeString = 'push' | 'replace' | 'traverse';
export type Options = {
    history?: 'auto' | 'push' | 'replace';
    info?: any;
    state?: any;
    formData?: FormData;
    sourceElement?: Element;
};
