import { ComponentPropsWithRef } from 'react'; import { AdminButtonType } from './admin-button-classes'; interface Props extends ComponentPropsWithRef<'button'> { buttonType: AdminButtonType; } export default function PrimaryButton({ className, children, buttonType, ...otherProps }: Props): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=primary-button.component.d.ts.map