export interface UseConfirmFunctions { markAsChanged: (state: boolean) => void; confirmDiscard: () => boolean; } export declare const useConfirm: () => UseConfirmFunctions;