import type { SatelliteConfig } from '@junobuild/config';
export declare const fullPath: ({ file, sourceAbsolutePath }: {
    file: string;
    sourceAbsolutePath: string;
}) => string;
export declare const listSourceFiles: ({ sourceAbsolutePath, ignore }: {
    sourceAbsolutePath: string;
} & Required<Pick<SatelliteConfig, "ignore">>) => string[];
