import { ReactNode } from 'react'; import { InputCheckGroupOrientation, InputCheckSize } from '@mezzanine-ui/core/_internal/input-check'; import { NativeElementPropsWithoutKeyAndRef } from '../../utils/jsx-types'; export interface InputCheckGroupProps extends NativeElementPropsWithoutKeyAndRef<'div'> { /** * The input check elements in group. */ children?: ReactNode; /** * The orientation of input check group. */ orientation?: InputCheckGroupOrientation; /** * Whether the input check group use segment style. * @default false */ segmentedStyle?: boolean; /** * The size of input check group. * @default 'main' */ size?: InputCheckSize; } /** * The react component for `mezzanine` input check group. */ declare const InputCheckGroup: import("react").ForwardRefExoticComponent>; export default InputCheckGroup;