import { PropsWithChildren } from 'react';
export interface ToastActionProps {
    onPress: () => void;
}
declare function ToastAction({ children, onPress, }: PropsWithChildren<ToastActionProps>): import("react/jsx-runtime").JSX.Element;
declare namespace ToastAction {
    var displayName: string;
}
export { ToastAction };
