import { ReactElement } from "react"; import { BaseInputProps } from "../../BaseInput/BaseInput"; type BaseInputExposedProps = Omit; export interface UrlBaseInputProps extends BaseInputExposedProps { /** * To disable the action button. * * @default false * @memberof UrlBaseInputProps * @example * */ disableAction?: boolean; } /** * A thin wrapper around the `BaseInput` component for URL input fields. * * NOTE: If shown with a label, please use the `UrlField` component instead. */ export declare const UrlBaseInput: ({ isInvalid, "data-testid": dataTestId, disabled, fieldSize, disableAction, value, defaultValue, ref, ...rest }: UrlBaseInputProps) => ReactElement; export {};