/// <reference types="react" />
export interface SpinProps {
    spinning?: boolean;
    type?: "list" | "chart";
    children?: React.ReactNode;
}
