import React, { CSSProperties, PropsWithChildren, ReactElement } from 'react'; interface VariantProps { style?: CSSProperties | undefined; className?: string | undefined; categoryName?: string; componentName?: string; name?: string; previewLayout?: 'center' | 'stretch'; requiredParams?: Array; proto?: (...args: any[]) => ReactElement | null | void; docURL?: string; previewImagePath?: string; } export declare const Variant: React.FC>; export {};