UNPKG

@hhgtech/hhg-components

Version:
10 lines (9 loc) 425 B
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 {};