import { ReactElement } from 'react';
export interface MyViewProps {
    name: string;
    title: string;
}
declare const MyView: ({ name, ...props }: MyViewProps) => ReactElement;
export default MyView;
