import type { ExtendedOptions } from '../commonTypes'; /** * Returns available page paths without file extension sorted by matching priority */ declare function getPagePaths({ options: { pagesDirectory, pageExtensions }, }: { options: ExtendedOptions; }): Promise; export default getPagePaths;