export declare const isPathInside: (parentPath: string, childPath: string) => boolean; export declare const resolveVaultPath: (vaultPath: string, notePath: string) => string; export declare const parseFrontmatterInput: (input: string) => Record; export declare const getNote: (filepath: string) => { filename: string; content: string; frontmatter: any; }; export declare const noteMeetsConditions: (frontmatter: { [key: string]: any; }, filter: string) => boolean; export declare const writeNote: (filepath: string, frontmatter: Record, content: string) => void;