import { BaseRepoUrlPickerProps } from './types'; /** * The underlying component that is rendered in the form for the `BitbucketRepoPicker` * field extension. * * @public * @param allowedOwners - Allowed workspaces for the Bitbucket cloud repository * @param allowedProjects - Allowed projects for the Bitbucket cloud repository * */ export declare const BitbucketRepoPicker: (props: BaseRepoUrlPickerProps<{ allowedOwners?: string[]; allowedProjects?: string[]; accessToken?: string; }>) => import("react/jsx-runtime").JSX.Element;