export type LoaderFallbackProps = { url?: string; hideDisplayText?: boolean; isLoadingPlugins?: boolean; plugins?: unknown[]; name?: string; }; /** * Loader / skeleton for the Link Picker. Takes LoaderFallbackProps (hideDisplayText, isLoadingPlugins, plugins) * to determine the height to prevent jumps in height when loading */ export declare const LoaderFallback: (props: LoaderFallbackProps) => JSX.Element;