import { default as React } from 'react'; export declare const UltimateIcons: { File3d: ({ width, height, ...props }: LucideIconProps) => import("react/jsx-runtime").JSX.Element; FileWord: ({ width, height, ...props }: LucideIconProps) => import("react/jsx-runtime").JSX.Element; FilePdf: ({ width, height, ...props }: LucideIconProps) => import("react/jsx-runtime").JSX.Element; FilePpt: ({ width, height, ...props }: LucideIconProps) => import("react/jsx-runtime").JSX.Element; FileExcel: ({ width, height, ...props }: LucideIconProps) => import("react/jsx-runtime").JSX.Element; Section: ({ width, height, ...props }: LucideIconProps) => import("react/jsx-runtime").JSX.Element; XSocial: ({ width, height, ...props }: LucideIconProps) => import("react/jsx-runtime").JSX.Element; Farcaster: ({ width, height, ...props }: LucideIconProps) => import("react/jsx-runtime").JSX.Element; Warpcast: ({ width, height, ...props }: LucideIconProps) => import("react/jsx-runtime").JSX.Element; DSheetTextDisabled: ({ width, height, ...props }: LucideIconProps) => import("react/jsx-runtime").JSX.Element; AddColLeft: () => import("react/jsx-runtime").JSX.Element; AddColRight: () => import("react/jsx-runtime").JSX.Element; AddRowBelowLocal: () => import("react/jsx-runtime").JSX.Element; AddRowAboveLocal: () => import("react/jsx-runtime").JSX.Element; DSheetOnlyText: () => import("react/jsx-runtime").JSX.Element; Orb: ({ width, height, ...props }: LucideIconProps) => import("react/jsx-runtime").JSX.Element; Lens: ({ width, height, ...props }: LucideIconProps) => import("react/jsx-runtime").JSX.Element; Hey: ({ width, height, ...props }: LucideIconProps) => import("react/jsx-runtime").JSX.Element; CloudSaved: ({ width, height, ...props }: LucideIconProps) => import("react/jsx-runtime").JSX.Element; }; export type ButtonSize = 'sm' | 'md' | 'lg'; interface SvgProps extends React.SVGProps { fill?: string; stroke?: string; } export interface LucideIconProps extends SvgProps { name: keyof typeof UltimateIcons; className?: string; size?: ButtonSize; strokeWidth?: number; } export declare const LucideIcon: React.ForwardRefExoticComponent & React.RefAttributes>; export {};