interface ApprovalExecution {
    id: number;
    approval?: any;
    snapshot?: any;
    approvalExecution?: any;
    workflow?: any;
    status?: number;
    updatedAt?: string;
    user?: any;
    job?: any;
    execution?: any;
}
export declare const ProviderContextApprovalExecution: import("react").Provider<Partial<ApprovalExecution>>;
export declare function useContextApprovalExecution(): Partial<ApprovalExecution>;
export {};
