import React from 'react'; import { CookiesConsentCategoryType } from './components/Category'; import { CookiesConsentButtonType } from './components/ConsentButton'; import { CookiesConsentControlsType } from './components/Controls'; import { ComponentExtra } from '../../types'; export interface CookiesConsentProps { /** * The content of the component. You can either use an assemble of * the ones available in its scope, like CookiesConsent.Category, or bring * your own elemnts. */ children?: React.ReactNode; /** * Ref forwarded to the HTML Root element. */ forwardedRef?: React.Ref; /** * The main title of the component. */ title?: string; } export declare type CookiesConsentComponents = { Category: CookiesConsentCategoryType; Controls: CookiesConsentControlsType; Button: CookiesConsentButtonType; }; export declare type CookiesConsentType = ComponentExtra; declare const CookiesConsentExtra: ComponentExtra; export default CookiesConsentExtra;