import { ComponentPropsWithoutRef } from 'react'; declare type Props = ComponentPropsWithoutRef<'button'> & { classModifier?: string; }; declare const ButtonCore: ({ className, classModifier, type, children, ...props }: Props) => JSX.Element; export default ButtonCore; //# sourceMappingURL=ButtonCore.d.ts.map