import { MarginProps } from "styled-system";
import { ValidationProps } from "../../__internal__/validations";
export interface StyledCheckboxProps extends ValidationProps, MarginProps {
    disabled?: boolean;
    fieldHelpInline?: boolean;
    inputWidth?: number | string;
    size?: string;
    labelSpacing?: 1 | 2;
    reverse?: boolean;
    adaptiveSpacingSmallScreen?: boolean;
    applyNewValidation?: boolean;
}
declare const StyledCheckbox: import("styled-components").StyledComponent<"div", any, {
    theme: object;
} & StyledCheckboxProps, "theme">;
export default StyledCheckbox;
