import React from 'react';
import type { Translations } from './FeedbackForm';
interface CheckboxStyle {
    checkedBorderColor: string;
    uncheckedBorderColor: string;
    checkedBackgroundColor: string;
    uncheckedBackgroundColor: string;
    checkmarkColor: string;
    textColor: string;
    fontFamily: string;
}
interface Props {
    isChecked: boolean;
    onChangeCheck: (_isChecked: boolean) => void;
    style: CheckboxStyle;
    translations: Translations;
}
export declare const ContactPermissionCheckbox: React.FC<Props>;
export {};
//# sourceMappingURL=ContactPermissionCheckbox.d.ts.map