import type { GitHubMatrixGroup } from './github-matrix.ts';
export declare const getGithubSamplesGroups: (samplesGroupFolder: string, keepExtensions?: boolean) => Promise<string[]>;
export declare const getGithubSamplesGroup: (samplesGroupFolder: string, group: string) => Promise<{
    samples: GitHubMatrixGroup;
    warnings: string[];
}>;
