import { BoxProps } from '@mui/material'; import React, { ReactNode } from 'react'; export declare type ViewProps = { /** * a node to be rendered in the special component. */ children?: ReactNode; type?: 'primary' | 'secondary'; } & BoxProps; export declare const useClassName: (type?: ViewProps['type']) => string; export declare const View: React.ForwardRefExoticComponent & React.RefAttributes>;