import type { Ref } from 'vue';
import type { CodeReviewProps } from '../code-review-types';
export declare function useCodeReviewExpand(reviewContentRef: Ref<HTMLElement>, props: CodeReviewProps): {
insertExpandButton: () => void;
onExpandButtonClick: (e: Event) => void;
};