/// <reference types="react" />
import { UpCheckbox as UpCheckboxComponent } from './UpCheckBox';
declare const _default: {
    title: string;
    decorators: ((...args: any) => any)[];
    component: typeof UpCheckboxComponent;
};
export default _default;
export declare const General: {
    (props: {
        text: string;
        label: string;
        inline: boolean;
        textAlign: "left" | "right";
    }): JSX.Element;
    args: {
        label: string;
        text: string;
        inline: boolean;
        textAlign: string;
    };
};
export declare const MultipleCheckboxes: () => JSX.Element;
export declare const MultipleCheckboxesWithSomeDisabled: () => JSX.Element;
export declare const DynamicCheckBoxesOptions: {
    (): JSX.Element;
    decorators: ((DynamicCheckBoxesOptions: any) => JSX.Element)[];
};
export declare const ReadOnlyCheckBox: () => JSX.Element;
