import { Ref } from 'vue';
export type WarningProps = {
    titleName?: string;
    contentName?: string;
    componentLink?: string;
    titleId: string;
    descriptionId: string;
    contentElement: Ref<HTMLElement | undefined>;
};
export declare function useWarning({ titleName, contentName, componentLink, titleId, descriptionId, contentElement, }: WarningProps): void;
