///
import { CheckboxItem, CheckboxItemProps } from './CheckboxItem';
declare enum ICON_POSITION {
LEFT = "left",
RIGHT = "right"
}
export interface CheckboxItemAllCheckProps extends CheckboxItemProps {
checkedStatus?: number;
}
export declare class CheckboxItemAllCheck extends CheckboxItem {
static defaultProps: {
label: string;
disabled: boolean;
checkedStatus: number;
iconPosition: ICON_POSITION;
checkedIcon: any;
style: {};
value: any;
checked: boolean;
};
constructor(props: any);
componentWillReceiveProps(nextProps: any): void;
handlePress: () => void;
renderLabel(): JSX.Element;
renderIcon: () => JSX.Element;
}
export {};