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