/** * PropertyPane CheckBox component props. * * @public */ export interface IPropertyPaneCheckboxProps { /** * Label to display next to the checkbox. */ text?: string; /** * Adds an aria-label to the checkbox for accessibility. */ ariaLabel?: string; /** * Whether the property pane checkbox is checked or not. * * @remarks * The default value is false. */ checked?: boolean; /** * Whether the property pane checkbox is disabled or not. */ disabled?: boolean; } //# sourceMappingURL=IPropertyPaneCheckbox.d.ts.map