import { FC } from 'react';
type Props = HTMLElement & {
    str?: string;
};
declare const Test: FC<Props>;
export default Test;
