import { CSSProperties } from "react";
export interface ICoreBase {
    children?: React.ReactNode;
    /**
     * Why className?
     * styled can style any component as long as it accepts a className prop.
     */
    className?: string;
    style?: CSSProperties;
    modifier?: string;
    active?: string;
}
