import type { CheckboxButtonProps } from "../.."; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [CheckboxButtonProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L796) * ## Props * @prop children * @prop class: className * @prop group = $bindable() * @prop checked = $bindable(false) * @prop inline * @prop pill * @prop outline * @prop size * @prop color * @prop shadow * @prop ...restProps */ declare const CheckboxButton: import("svelte").Component; type CheckboxButton = ReturnType; export default CheckboxButton;