/** * Determines if the code only contains JSX by removing all imports * and checking if the remaining code starts and ends with a JSX tag. */ export declare function isJsxOnly(code: string): boolean;