import { type ButtonProps as PrimerButtonProps, type SlotMarker } from '@primer/react'; import type { SxProp, BetterSystemStyleObject } from '../sx'; import type { ForwardRefComponent } from '../polymorphic'; type ButtonComponentProps = PrimerButtonProps & SxProp & { as?: React.ElementType; }; declare const ButtonComponent: ForwardRefComponent<"button", ButtonComponentProps> & SlotMarker; export declare function generateCustomSxProp(props: Partial>, providedSx: BetterSystemStyleObject): { [key: string]: BetterSystemStyleObject; }; export { ButtonComponent, type ButtonComponentProps }; //# sourceMappingURL=Button.d.ts.map