import { Version } from '@microsoft/sp-core-library';
import { type IPropertyPaneConfiguration } from '@microsoft/sp-property-pane';
import { BaseClientSideWebPart } from '@microsoft/sp-webpart-base';
import { TextFieldProps, TextFieldVariants } from '@mui/material';
export interface ISearchbarWebPartProps {
    label: string;
    size: TextFieldProps['size'];
    color: TextFieldProps['color'];
    variant: TextFieldVariants;
    scope: string;
    excludedScope: string;
}
export default class SearchbarWebPart extends BaseClientSideWebPart<ISearchbarWebPartProps> {
    render(): void;
    protected onInit(): Promise<void>;
    protected onDispose(): void;
    protected get dataVersion(): Version;
    protected getPropertyPaneConfiguration(): IPropertyPaneConfiguration;
}
//# sourceMappingURL=SearchbarWebPart.d.ts.map