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