import { AbstractGroupInputProps } from "../../input"; import { OmitInternalProps } from "../../shared"; import { ComponentProps } from "react"; import { ResponsiveProp } from "../../styling"; declare const DefaultElement = "div"; export interface InnerCheckboxGroupProps extends AbstractGroupInputProps { /** * The checkbox of a group can vary in size. */ size?: ResponsiveProp<"sm" | "md">; } export declare function InnerCheckboxGroup(props: InnerCheckboxGroupProps): JSX.Element; export declare namespace InnerCheckboxGroup { var defaultElement: string; } /** * [Documentation](https://orbit.sharegate.design/?path=/docs/checkbox--default-story) */ export declare const CheckboxGroup: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type CheckboxGroupProps = ComponentProps; export {};