export interface ApprovalAction {
status: number | null;
}
export declare function useContextApprovalAction(): Partial<ApprovalAction>;
export declare function ApprovalActionProvider({ children, ...props }: {
[x: string]: any;
children: any;
}): import("react/jsx-runtime").JSX.Element;