import { FlexboxProps } from "../Flex/type.mjs";
import { Ref } from "react";

//#region src/Snippet/type.d.ts
interface SnippetProps extends FlexboxProps {
  children: string;
  copyable?: boolean;
  language?: string;
  prefix?: string;
  ref?: Ref<HTMLDivElement>;
  shadow?: boolean;
  spotlight?: boolean;
  variant?: 'filled' | 'outlined' | 'borderless';
}
//#endregion
export { SnippetProps };
//# sourceMappingURL=type.d.mts.map