import { AssertionFailed } from '../../errors';
import { Result } from 'defekt';
declare const assertStringIsNotEmpty: (actual: string) => Result<undefined, AssertionFailed>;
export { assertStringIsNotEmpty };
