export declare type HistoryType = 'push' | 'replace'; export declare const useNavigation: () => { create: (resource: string, type?: HistoryType) => void; edit: (resource: string, id: string, type?: HistoryType) => void; clone: (resource: string, id: string, type?: HistoryType) => void; show: (resource: string, id: string, type?: HistoryType) => void; list: (resource: string, type?: HistoryType) => void; push: (path: string, state?: unknown) => void; replace: (path: string, state?: unknown) => void; goBack: () => void; };