import { type Options } from '../options.js';
import { type ArtType } from '../art.js';
export declare function useSeparateArtworks(_options: Options): Promise<boolean>;
export declare function getArtPath(filePath: string, _machine: string, _type?: ArtType): Promise<string>;
export declare function exportArtwork(art1Url: string | undefined, art2Url: string | undefined, artPath: string, options: Options): Promise<boolean>;
export declare function cleanupArtwork(targetPath: string, _romFolders: string[], _options: Options): Promise<void>;
declare const anbernic: {
    useSeparateArtworks: typeof useSeparateArtworks;
    getArtPath: typeof getArtPath;
    exportArtwork: typeof exportArtwork;
    cleanupArtwork: typeof cleanupArtwork;
};
export default anbernic;
