import SpyInterface from '../../interfaces/SpyInterface';
declare const uiAssert: {
    assertRendersSelect(ui: SpyInterface): Promise<any>;
    assertSelectDidNotRenderChoice(ui: SpyInterface, value: string, label: string): void;
    assertSelectRenderChoice(ui: SpyInterface, value: string, label: string): void;
    assertRendersDirectorySelect(ui: SpyInterface, defaultValue: string): void;
    assertRendersConfirmWriteFile(ui: SpyInterface): Promise<void>;
};
export default uiAssert;
