import { CheckboxProps } from '@mui/material';
import { FunctionComponent } from 'react';

interface StyledCheckboxProps extends CheckboxProps {
    sizing?: 'default' | 'lg';
    variant?: 'default' | 'secondary';
}
declare const StyledCheckbox: FunctionComponent<StyledCheckboxProps>;

export { StyledCheckbox as default };
export type { StyledCheckboxProps };
