//#region src/FilteredActionList/constants.d.ts
declare class FilteredActionListLoadingType {
  name: string;
  appearsInBody: boolean;
  constructor(name: string, appearsInBody: boolean);
}
declare const FilteredActionListLoadingTypes: {
  bodySpinner: FilteredActionListLoadingType;
  bodySkeleton: FilteredActionListLoadingType;
  input: FilteredActionListLoadingType;
};
//#endregion
export { FilteredActionListLoadingType, FilteredActionListLoadingTypes };