/** * Inline SVG glyphs for the timeline editor. The package stays dependency-free * beyond React (the repo convention — see web-react), so the handful of icons * the editor needs are inlined with lucide-equivalent path data. */ interface GlyphProps { className?: string; } export declare const FilmGlyph: ({ className }: GlyphProps) => import("react").JSX.Element; export declare const AudioGlyph: ({ className }: GlyphProps) => import("react").JSX.Element; export declare const CaptionGlyph: ({ className }: GlyphProps) => import("react").JSX.Element; export declare const ReferenceGlyph: ({ className }: GlyphProps) => import("react").JSX.Element; export declare const AgentGlyph: ({ className }: GlyphProps) => import("react").JSX.Element; export declare const LockGlyph: ({ className }: GlyphProps) => import("react").JSX.Element; export declare const MutedGlyph: ({ className }: GlyphProps) => import("react").JSX.Element; export declare const PlayGlyph: ({ className }: GlyphProps) => import("react").JSX.Element; export declare const PauseGlyph: ({ className }: GlyphProps) => import("react").JSX.Element; export declare const UndoGlyph: ({ className }: GlyphProps) => import("react").JSX.Element; export declare const RedoGlyph: ({ className }: GlyphProps) => import("react").JSX.Element; export declare const MagnetGlyph: ({ className }: GlyphProps) => import("react").JSX.Element; export declare const ScissorsGlyph: ({ className }: GlyphProps) => import("react").JSX.Element; export declare const CaptionPlusGlyph: ({ className }: GlyphProps) => import("react").JSX.Element; export declare const ExportGlyph: ({ className }: GlyphProps) => import("react").JSX.Element; export declare const PlusGlyph: ({ className }: GlyphProps) => import("react").JSX.Element; export declare const MinusGlyph: ({ className }: GlyphProps) => import("react").JSX.Element; export {};