import * as React from "react";
import { PCRCheckboxRadioProps } from "../../typings/PCRCheckboxRadioProps";
declare type StateProps = {
  ...React.HTMLAttributes<HTMLDivElement>,
  ...{
    color?: $PropertyType<PCRCheckboxRadioProps, "color">,
    icon?: React.Node,
    ...
  },
};
/**
 * A tiny component to abstract away pretty-checkbox "state" div.
 * Shared by all components.
 */
declare export var State: React.FC<StateProps>;
declare export {};
