import { ContentOrOptions } from '../types/api-shape';
import { MessageRef } from '../types/message-ref';
import { MessageOptions, PropsWithMsgKey } from '../types/message-shape';
declare type OtherOptions = Omit<MessageOptions, 'content' | 'duration'>;
declare function createOptions(instance: MessageRef, value: ContentOrOptions, duration?: number, options?: OtherOptions): PropsWithMsgKey<MessageOptions>;
export default createOptions;
