/**
* Type describing the allowed values for a boolean input.
* @docs-private
*/exportdeclaretypeBooleanInput = string | boolean | null | undefined;
/** Coerces a data-bound value (typically a string) to a boolean. */exportdeclarefunctioncoerceBooleanProperty(value: any): boolean;