import { DefaultLayoutTranslations, ThumbnailSrc } from '@vidstack/react/types/vidstack'; export type VideoLayoutProps = { controls?: boolean; thumbnails?: ThumbnailSrc; translations?: Partial; }; /** * VideoLayout component * * This component is responsible for rendering the layout of the video player. * It uses the DefaultVideoLayout component from the vidstack library and applies * custom icons, slots, and other configurations. * For more info see: https://vidstack.io/docs/player/components/layouts/default-layout */ export declare const VideoLayout: React.FC;