/// /** * ShellCheck Archive arguments. */ export type ShellCheckArchiveArgs = { /** * Platform. */ platform?: NodeJS.Platform; }; /** * Convert platform to ShellCheck archive. * * @param args - Arguments. * @returns ShellCheck archive. */ export declare function shellCheckArchive(args?: ShellCheckArchiveArgs): import("../types").ShellCheckArchive;