import { FileMetaInfo } from '../type';
/**
 * Service class for filesystem entity operations
 * TypeScript equivalent of Go's Service struct
 */
export declare class Service {
    /**
     * Creates a new FileMetaInfo with the given filename
     * TypeScript equivalent of Go's NewFileMetaInfo method
     */
    newFileMetaInfo(filename: string): FileMetaInfo;
    /**
     * Creates a new FileMetaInfo with the given content
     * TypeScript equivalent of Go's NewFileMetaInfoWithContent method
     */
    newFileMetaInfoWithContent(content: string): FileMetaInfo;
}
/**
 * Creates a new Service instance
 */
export declare function newService(): Service;
export default Service;
//# sourceMappingURL=service.d.ts.map