import { FileResult } from "@stryke/types/file"; //#region src/is-file-result.d.ts /** * Check if the provided value is a `FileResult` object * * @param value - The value to type check * @returns An indicator specifying if the value provided is a `FileResult` object */ declare const isFileResult: (value: any) => value is FileResult; //#endregion export { isFileResult }; //# sourceMappingURL=is-file-result.d.mts.map