import { ReactElement, ReactNode } from 'react';
interface MediaPlayerLayoutProps {
    children?: ReactNode;
}
export declare const MediaPlayerLayout: (({ children }: MediaPlayerLayoutProps) => ReactElement) & {
    displayName: string;
};
export {};
