export function getColumns({ jestOutput }: { jestOutput: any; }): ({ name: string; run: ({ isPrivate, componentDisplayName, truncatedPath, prUrl }: { isPrivate: any; componentDisplayName: any; truncatedPath: any; prUrl: any; }) => { content: any; success: boolean; }; skipForPrivateComponents?: undefined; } | { name: string; run: ({ truncatedPath }: { truncatedPath: any; }) => { content: string; success: boolean; }; skipForPrivateComponents: ({ truncatedPath }: { truncatedPath: any; }) => boolean; } | { name: string; run: ({ truncatedPath }: { truncatedPath: any; }) => { content: string; success: boolean; }; skipForPrivateComponents: boolean; } | { name: string; run: ({ truncatedPath, checkerConfig }: { truncatedPath: any; checkerConfig: any; }) => { content: string; success: boolean; }; skipForPrivateComponents?: undefined; })[];