/** * @param {string} component - The name of the component. * @param {string} deprecatedProp - The name of the deprecated property. * @param {string} newProp - The name of the new property. * @description Give warning the user about property that has been deprecated. */ export declare const deprecatedLogger: (component: string, deprecatedProp: string, newProp: string) => void;