import { FileStat } from '../../types.ts'; import { type Identity } from './utils/identity.ts'; export declare function printfNeedsStat(fmt: string): boolean; export type PrintfKind = 'f' | 'd' | 'l' | 'c'; export interface PrintfStatFacts { size: number; kind: PrintfKind; mtimeEpoch: number; mode: number | null; targetKind: PrintfKind | 'N' | null; uid: number | string | null; gid: number | string | null; } export declare function printfKind(st: FileStat): PrintfKind; export declare function expandPrintf(fmt: string, row: string, startBase: string, st: PrintfStatFacts | null, warnings: string[], identity?: Identity | null): string; //# sourceMappingURL=find_printf.d.ts.map