import React from 'react'; import { ComponentExtra } from '../../types'; import { CookiesButtonType } from './components/CookiesButton'; export interface CookiesBannerProps { /** * The controls of the CookiesBanner. You can either use Cookies.Button or your own. */ children?: React.ReactNode; /** * Ref forwarded to the HTML Root element. */ forwardedRef?: React.Ref; /** * The CookiesBanner main text content. */ text?: string; /** * The ref to attach to the main div container. */ ref?: React.Ref; } export declare type CookiesBannerComponents = { Button: CookiesButtonType; }; export declare type CookiesBannerType = ComponentExtra; declare const CookiesBannerExtra: ComponentExtra; export default CookiesBannerExtra;