import { default as React } from 'react'; import { MenuItemType } from '../Menu/Menu.types'; import { A11y, Direction } from '@wix/editor-react-types'; import { SdkFunctionClickableProps, SdkFunctionMouseHoverProps, SdkFunctionFocusableProps } from '../../../utils/functions/sdkFunctionCallbackProps'; type TestCompProps = { id: string; className?: string; customClassNames?: Array; wix?: { presetsWrapperProps?: Record; }; elementProps?: { title?: { text?: string; }; description?: { text?: string; }; image?: { src?: string; alt?: string; }; }; a11y?: A11y; isEnabled?: boolean; label?: string; count?: number; variant?: string; buttonLink?: { href?: string; target?: string; }; externalUrl?: string; cardImage?: { uri?: string; alt?: string; width?: number; height?: number; }; cardVideo?: { videoId?: string; videoUrl?: string; }; icon?: { svgId?: string; svgContent?: string; }; direction?: Direction; items?: Array<{ name?: string; description?: string; }>; activeItem?: number; menuItems?: Array; setCount?: (value: number) => void; getCountAsText?: () => string; } & SdkFunctionClickableProps & SdkFunctionMouseHoverProps & SdkFunctionFocusableProps; declare const TestComp: React.FC; export default TestComp;