import { Checkbox, CheckboxOptions, FoundationElementTemplate } from '@microsoft/fast-foundation'; import { checkboxStyles as styles } from './checkbox.styles.js'; import { ViewTemplate } from '@microsoft/fast-element'; /** * The template for the {@link @microsoft/fast-foundation#(Checkbox:class)} component. * @public */ export declare const checkboxTemplate: FoundationElementTemplate, CheckboxOptions>; /** * Checkbox class * * @public * @tagname jp-checkbox */ declare class JupyterCheckbox extends Checkbox { indeterminateChanged(prev: boolean, next: boolean): void; } /** * A function that returns a {@link @microsoft/fast-foundation#Checkbox} registration for configuring the component with a DesignSystem. * Implements {@link @microsoft/fast-foundation#checkboxTemplate} * * * @public * @remarks * Generates HTML Element: `` */ export declare const jpCheckbox: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry>; export { JupyterCheckbox as Checkbox }; export { styles as checkboxStyles };