import type { AbsolutePath } from '@-xun/fs';
/**
 * A type representing the name of an available dummy file containing
 * pseudodecorators.
 */
export type PseudodecoratorFileName = 'extensionless' | 'js' | 'json' | 'md' | 'ts' | 'yml';
/**
 * Return a path to an analyzable file containing one or more pseudodecorators.
 */
export declare function getDummyDecoratedPath(id: PseudodecoratorFileName): AbsolutePath;