import { ThemingProps } from "../theme/types.js";
import "../theme/index.js";
import { SystemProps } from "../system/system.js";
import "../system/index.js";
import { IconProp } from "../icon/icon.types.js";
import "../icon/index.js";
//#region src/copyToClipboard/copyToClipboard.types.d.ts
type CopyToClipboardProps = SystemProps & ThemingProps<'Button'> & {
  /** Text string for copying */
  copyText: string;
  /** Icon @default falCopy  */
  icon?: IconProp;
  /** Button size @default "xs" */
  size?: 'xs' | 'sm' | 'md' | 'lg';
};
//#endregion
export { CopyToClipboardProps };

//# sourceMappingURL=copyToClipboard.types.d.ts.map