@clerk/clerk-js
Version:
Clerk JS library
10 lines (9 loc) • 375 B
TypeScript
import { Button } from '../customizables';
import type { PropsOfComponent } from '../styledSystem';
type TimerButtonProps = PropsOfComponent<typeof Button> & {
throttleTimeInSec?: number;
startDisabled?: boolean;
showCounter?: boolean;
};
export declare const TimerButton: (props: TimerButtonProps) => import("@emotion/react/jsx-runtime").JSX.Element;
export {};