import type { UIButtonProps } from "./molecules/types";
declare module "react" {
    namespace JSX {
        interface IntrinsicElements {
            "ui-button": UIButtonProps;
        }
    }
}
export {};
