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