import * as React from 'react'; import { TextProps } from '../../Typography'; import { InputProps } from '../Input'; export interface StyledLabelProps extends React.HTMLProps { disabled?: boolean; markInvalid?: boolean; aligncenter?: boolean; labelBeforeCheckbox?: boolean; } export interface CheckboxProps extends InputProps { id?: string; aligncenter?: boolean; labelBeforeCheckbox?: boolean; outlineOffset?: string; } export declare const Checkbox: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export type CheckboxLabelProps = TextProps; export declare const CheckboxLabel: ({ ...props }: CheckboxLabelProps) => import("@emotion/react/jsx-runtime").JSX.Element; //# sourceMappingURL=Checkbox.d.ts.map