export interface UseDeprecationMessageProps { method?: 'component' | 'property' | 'custom'; trigger: boolean; componentName: string; componentProps?: { newName?: string; delete?: boolean; }; propertyProps?: { deprecatedName?: string; newName?: string; delete?: boolean; deprecatedValue?: string; newValue?: string; propertyName?: string; }; customText?: string; } export declare const useDeprecationMessage: ({ method, trigger, componentName, componentProps, propertyProps, customText, }: UseDeprecationMessageProps) => void;