import type { SetupContext } from 'vue';
import type { CodeReviewProps } from '../code-review-types';
export declare function useCodeReviewFold(props: CodeReviewProps, ctx: SetupContext): {
isFold: import("vue").Ref<boolean>;
toggleFold: (status?: boolean | undefined) => void;
};