import { FC } from 'react'; import { CheckboxFieldState, InputFieldState, TextAreaFieldState } from '@servicetitan/form'; import { LayoutProps } from '@servicetitan/design-system'; export interface OptOutMessageState { subjectLine: InputFieldState; header: InputFieldState; body: TextAreaFieldState; buttonText: InputFieldState; monthsLimit: InputFieldState; enabled: CheckboxFieldState; autoSuppressionEnabled: CheckboxFieldState; } export interface OptOutMessageProps { formState: OptOutMessageState; layout?: LayoutProps['type']; className?: string; onHandleClickEnable?(checked: boolean): void; } export declare const OptOutMessage: FC; //# sourceMappingURL=index.d.ts.map