import type { Actionable } from '../Actionable'; import type { Option } from '../Option'; export type CheckboxElement = Actionable<{ type: 'checkbox'; options: Option[]; initialOptions?: Option[]; }>; //# sourceMappingURL=CheckboxElement.d.ts.map