import { CSSProperties } from 'glamor';
import { StyleOverwrites } from '../component.interfaces';
import React from 'react';
export type CheckboxStyles = CSSProperties;
export interface CheckboxProps extends StyleOverwrites<CheckboxStyles> {
    value?: boolean;
    label?: string;
    placeholder?: string;
    id: string;
    onChange?: (checked: boolean) => void;
    children?: React.ReactNode;
}
export declare const Checkbox: React.FC<CheckboxProps>;
