import React, { HTMLAttributes } from 'react';
export interface InlineButtonProps extends HTMLAttributes<HTMLElement> {
    as?: React.ElementType<any>;
    onClick: (e: any, ...more: unknown[]) => void;
    [rest: string]: any;
}
export declare const InlineButton: ({ as, onClick, ...rest }: InlineButtonProps) => React.JSX.Element;
//# sourceMappingURL=InlineButton.d.ts.map