/** * VideoEditor Component * * Entertainment component with full dark mode support. * * @component * @example * ```tsx * * ``` */ export interface VideoEditorProps { className?: string; children?: React.ReactNode; disabled?: boolean; } export declare const VideoEditor: ({ className, children, disabled, }: VideoEditorProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=video-editor.d.ts.map