import React from "react"; /** * Component that displays a loading indicator. * * @remarks * It will be rendered during the initialization instead of the component that implements {@link IAttributeFilterDropdownButtonProps}. * @beta */ export interface IAttributeFilterLoadingProps { /** * Callback to open or close AttributeFilter dropdown. * * @beta */ onClick?: () => void; /** * If true, the AttributeFilter dropdown is open. * * @beta */ isOpen?: boolean; } /** * AttributeFilter component that displays a loading indicator. * * @beta */ export declare const AttributeFilterLoading: React.FC; //# sourceMappingURL=AttributeFilterLoading.d.ts.map