import React from 'react'; /** * A Win98 themed checkbox React component. * * This component extends the native HTML `input` element of type `checkbox` with additional props. * * @example Creating a checkbox * * ```tsx * * ``` * * @remarks * - The `name` prop is required and specifies the name attribute for the checkbox input. */ declare const Checkbox: React.ForwardRefExoticComponent<{ /** * The name attribute for the checkbox input. */ name: string; /** * The label text to display next to the checkbox. */ label: string; } & Omit, "type" | "id"> & React.RefAttributes>; export default Checkbox;