import React from 'react'; interface IAuthProps { featureId: string; noAuthContent?: React.ReactNode; children?: React.ReactNode; } declare function Auth({ featureId, noAuthContent, children }: IAuthProps): JSX.Element; export default Auth;