import { ActionFn, SimpleFn } from "@bodynarf/utils"; /** * Executes the provided function only once during the component's initial render (mount) * @param fn Function to be called only on the initial render of the component */ export declare const useMount: (fn: ActionFn) => void; /** * Executes the provided function only once during the component's initial render (mount) with unsubscribe * @param fn Function to be called only on the initial render of the component */ export declare const useMountWithUnsubscribe: (fn: SimpleFn) => void; //# sourceMappingURL=useMount.d.ts.map