import { default as React } from 'react'; import { VariantProps } from 'class-variance-authority'; declare const codeVariants: (props?: ({ variant?: "default" | "primary" | null | undefined; size?: "sm" | "md" | "lg" | null | undefined; } & import('class-variance-authority/dist/types').ClassProp) | undefined) => string; export interface CodeProps extends React.HTMLAttributes, VariantProps { children: React.ReactNode; /** Show copy button */ showCopy?: boolean; /** Language label */ language?: string; /** Show line numbers */ showLineNumbers?: boolean; } export declare const Code: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=Code.d.ts.map