import React, { ReactNode } from 'react';
import { SettingsProps } from './ConsentManager';
export interface ConsentSettingsProps {
    renderSettings?: (props: SettingsProps) => ReactNode;
    theme?: {
        primaryColor?: string;
        textColor?: string;
        backgroundColor?: string;
    };
    unstyled?: boolean;
    className?: string;
    children?: ReactNode;
}
export declare const ConsentSettings: React.FC<ConsentSettingsProps>;
//# sourceMappingURL=ConsentSettings.d.ts.map