/**
* -------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License.
* See License in the project root for license information.
* -------------------------------------------------------------------------------------------
*/
///
import { TemplateContext, TemplateRenderedData } from '@microsoft/mgt-element';
export type PickerProps = {
resource?: string;
version?: string;
maxPages?: number;
placeholder?: string;
keyName?: string;
entityType?: string;
scopes?: string[];
cacheEnabled?: boolean;
cacheInvalidationPeriod?: number;
selectedValue?: string;
templateContext?: TemplateContext;
selectionChanged?: (e: CustomEvent) => void;
updated?: (e: CustomEvent) => void;
templateRendered?: (e: CustomEvent) => void;
};
export declare const Picker: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
//# sourceMappingURL=picker.d.ts.map