import { IntrinsicStyledCoreProps } from '@smart-react-components/core/element-props/intrinsic-styled-core-props';
import { ContentElement, PaletteProp, Partial, ResponsiveProp, SetState, ShapeProp, SizeProp } from '@smart-react-components/core/types';
import React from 'react';
import { FormValue, OrderPosition } from '../types';
export interface Props extends Partial<ResponsiveProp<'size', SizeProp>>, IntrinsicStyledCoreProps {
    active?: FormValue[];
    items: FormValue[];
    isBlock?: boolean;
    isDisabled?: boolean;
    isOutline?: boolean;
    isSoft?: boolean;
    label?: ContentElement;
    name?: string;
    palette?: PaletteProp;
    position?: OrderPosition;
    setActive?: SetState<FormValue[]>;
    shape?: ShapeProp;
    template?: JSX.Element;
}
declare const CheckboxAll: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLInputElement>>;
export default CheckboxAll;
