import React, { ComponentType } from 'react';
import { CheckboxProps, TextProps } from "../../../../../../mantine";
type Props = {
    labelTextProps?: TextProps;
    LabelWrapper?: ComponentType<TextProps>;
    useCollapse?: boolean;
} & CheckboxProps;
export declare const NewsletterCheckbox: ({ labelTextProps, checked: checkedProps, LabelWrapper, useCollapse, ...props }: Props) => React.JSX.Element;
export {};
