import { HtmlComponentData, IHtmlComponentProps } from '../HTMLComponent.types';
import { SdkFunctionMouseHoverProps } from '../../../../utils/functions/sdkFunctionCallbackProps';
export type HtmlComponentProps = IHtmlComponentProps & HtmlComponentData & SdkFunctionMouseHoverProps & {
componentConsentPolicy?: Record;
a11y?: {
ariaLabel?: string;
tabIndex?: number;
};
allowFullScreen?: boolean;
};
interface UseHTMLComponentPropsParams {
props: Partial;
isPreview: boolean;
shouldUseConsentPolicy: boolean;
}
export declare const useHTMLComponentProps: ({ props, isPreview, shouldUseConsentPolicy, }: UseHTMLComponentPropsParams) => {
componentProps: Partial;
isSSR: boolean;
};
export {};