import React, { ComponentProps, FunctionComponent, ReactNode } from 'react';
declare const Input: import("@storybook/theming").StyledComponent<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, {
    checkboxColor: string;
}, import("@storybook/theming").Theme>;
interface Props {
    appearance?: 'primary' | 'secondary';
    id: string;
    label: ReactNode;
    hideLabel?: boolean;
    error?: ReactNode;
}
export declare const Checkbox: FunctionComponent<Props & Omit<ComponentProps<typeof Input>, 'checkboxColor'>>;
export {};
//# sourceMappingURL=Checkbox.d.ts.map