import { AzureSiteListResponse } from '@backstage/plugin-azure-sites-common'; export declare function useSites({ name }: { name: string; }): readonly [{ readonly loading: boolean; readonly data: AzureSiteListResponse | null | undefined; readonly error: Error | undefined; readonly retry: (() => void) | (() => void) | (() => void) | (() => void); }];