import IComponent from "./IComponent";
export default interface IComponentLoot extends IComponent {
    table: string;
}
