/// /** * ShellCheck Platform arguments. */ export type ShellCheckPlatformArgs = { /** * Platform. */ platform?: NodeJS.Platform; }; /** * Convert platform to ShellCheck platform. * * @param args - Arguments. * @returns ShellCheck platform. */ export declare function shellCheckPlatform(args?: ShellCheckPlatformArgs): "" | import("../types").ShellCheckPlatform;