import React from 'react'; import { SxProps } from '@mui/material'; interface Props { children?: React.ReactNode; order?: number; sx?: SxProps; disableAnimation?: boolean; } export declare const SceneLayer: ({ children, order, sx, disableAnimation }: Props) => import("react/jsx-runtime").JSX.Element; export {};