import { SxProps, Theme } from '@mui/material';
import { FunctionComponent, ReactNode } from 'react';
import { SurfaceProps } from '../../WebCore/Surface/Surface.js';

interface AuthContainerSurfaceProps extends SurfaceProps {
    headContent?: ReactNode;
    sx?: SxProps<Theme>;
    children: ReactNode;
}
declare const AuthContainerSurface: FunctionComponent<AuthContainerSurfaceProps>;

export { AuthContainerSurface as default };
export type { AuthContainerSurfaceProps };
