import * as React from 'react'; import type { CheckedState } from './useCheckbox'; export interface BubbleInputProps extends Omit, 'checked'> { checked: CheckedState; control: HTMLElement | null; bubbles: boolean; isHidden?: boolean; } export declare const BubbleInput: (props: BubbleInputProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=BubbleInput.d.ts.map