import type { BaseTheme } from '@instructure/shared-types'; /** * Checks if the given param is an object with all the keys needed for an * Instructure theme. * @param theme Anything. This function will throw an error if it's not a theme * object. */ declare const isBaseTheme: (theme: any) => theme is BaseTheme; export default isBaseTheme; export { isBaseTheme }; //# sourceMappingURL=isBaseTheme.d.ts.map