> ## Documentation Index
> Fetch the complete documentation index at: https://docs-staging-docs-event-stream-action-templates.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# UseResendOptions

Optional configuration for [useResend](/docs/libraries/acul/react-sdk/API-Reference/Hooks/useResend).

```ts Example theme={null}
export interface UseResendOptions {
  timeoutSeconds?: number;
  onTimeout?: () => void;
}
```

## Properties

<ParamField body="timeoutSeconds" type="number" default="10">
  Countdown duration (in seconds) before another resend is allowed.
  Defaults to `10`.
</ParamField>

<ParamField body="onTimeout" type="() => void">
  Callback fired when the countdown finishes and the resend action becomes available again.
</ParamField>
