import { Version } from '@microsoft/sp-core-library';
import { type IPropertyPaneConfiguration } from '@microsoft/sp-property-pane';
import { BaseClientSideWebPart } from '@microsoft/sp-webpart-base';
import { IPropertyFieldList } from '@pnp/spfx-property-controls';
export interface IExplorerWebPartProps {
    library: IPropertyFieldList;
    displayType: 'grid' | 'list';
}
export default class ExplorerWebPart extends BaseClientSideWebPart<IExplorerWebPartProps> {
    render(): void;
    protected onInit(): Promise<void>;
    protected onDispose(): void;
    protected get dataVersion(): Version;
    protected getPropertyPaneConfiguration(): IPropertyPaneConfiguration;
}
//# sourceMappingURL=ExplorerWebPart.d.ts.map