import { InputBox } from '@rocket.chat/fuselage';
import type { ComponentProps, ReactNode } from 'react';
type WorkspaceUrlInputProps = Omit<ComponentProps<typeof InputBox>, 'type'> & {
    addon?: ReactNode;
    error?: string | undefined;
    domain: string;
};
declare const WorkspaceUrlInput: import("react").ForwardRefExoticComponent<Omit<WorkspaceUrlInputProps, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
export default WorkspaceUrlInput;
//# sourceMappingURL=WorkspaceUrlInput.d.ts.map