import { default as React, PropsWithChildren } from 'react'; type AuthWrapperProps = PropsWithChildren<{ version: string; name: string; copy?: string; background?: React.ReactNode | React.ComponentType; logo?: React.ReactNode; footer?: boolean; }>; declare function AuthWrapper({ version, name, copy, children, logo, background, footer }: AuthWrapperProps): import("react/jsx-runtime").JSX.Element; export { AuthWrapper }; //# sourceMappingURL=AuthWrapper.d.ts.map