interface UseDeprecationWarningArgs { description?: string; name: string; newName?: string; } declare const useDeprecationWarning: ({ description, name, newName, }: UseDeprecationWarningArgs) => void; interface UsePropDeprecationWarningArgs

{ props: P; componentName: string; description?: string; name: keyof P; newName?: string; } declare const usePropDeprecationWarning:

({ props, componentName, description, name, newName, }: UsePropDeprecationWarningArgs

) => void; export { useDeprecationWarning, usePropDeprecationWarning }; //# sourceMappingURL=use-deprecation-warnings.d.ts.map