/** * @description ku4-feature */ export declare class Ku4Feature { private readonly featurePolicy; constructor(); host: HTMLKu4FeatureElement; /** * Will display when true. This takes precedence * over any passed policy. (optional) */ readonly on: boolean; /** * A function or method that returns a boolean. * A return value of true will turn on the this * feature. (optional) */ readonly policy: string; enabled: boolean; componentWillLoad(): void; render(): any; }