import React from 'react'; import { CheckboxProps } from './interfaces'; import { InternalBaseComponentProps } from '../internal/hooks/use-base-component'; interface InternalProps extends CheckboxProps, InternalBaseComponentProps { withoutLabel?: boolean; tabIndex?: -1; } declare const InternalCheckbox: React.ForwardRefExoticComponent>; export default InternalCheckbox; //# sourceMappingURL=internal.d.ts.map