import type { AlertOptions } from './types'; export declare const useAlert: (message: string | ((props: any) => string), options?: AlertOptions | ((props: any) => AlertOptions)) => { show: (props?: any) => void; hide: () => void; };