/** * @publicApi * * @description * Use this function to create a host binding that can be used in a component. * * @example * * const disabled = useHostBinding$('disabled', false); * // somewhere in the component * disabled.set(true); * * @param className * @param enabledByDefault */ export declare function useHostBinding(className: string, enabledByDefault: boolean): { /** * Set the value of the host binding * @param newValue */ set(newValue: boolean): void; /** * Get the value of the host binding */ get(): boolean; };