import { FC } from 'react'; import { CheckboxFieldState, InputFieldState, TextAreaFieldState } from '@servicetitan/form'; import { LayoutProps } from '@servicetitan/design-system'; export declare const footerText = "If you\u2019ve received this email by mistake, no action is needed, just delete this message."; export interface DoubleOptInPropsFormState { emailSubject: InputFieldState; emailHeader: InputFieldState; emailBody: TextAreaFieldState; emailButtonText: InputFieldState; enabled: CheckboxFieldState; } export interface DoubleOptInProps { formState: DoubleOptInPropsFormState; layout?: LayoutProps['type']; className?: string; onHandleClickEnable?(checkd: boolean): void; } export declare const DoubleOptIn: FC; //# sourceMappingURL=index.d.ts.map