UNPKG

react-application-core

Version:

A react-based application core for the business applications.

21 lines (20 loc) 629 B
/// <reference types="react" /> import { BaseCheckbox } from './base-checkbox.component'; import { ICheckboxProps } from '../../../definition'; /** * @component-impl * @stable [21.12.2020] */ export declare class Checkbox extends BaseCheckbox<ICheckboxProps> { static readonly defaultProps: ICheckboxProps & Partial<import("../../../definition").IGenericComponentProps<any>>; /** * @stable [21.12.2020] * @protected */ protected get inputAttachmentElement(): JSX.Element; /** * @stable [21.12.2020] * @protected */ protected getFieldClassName(): string; }