/**
 * Copyright (c) ACT, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 *
 * @prettier
 */
/**
 * Create a dictionary of StoryBook arg types.  Be default the type and control
 * will be automatically inferred and this helper does an ok job of setting up
 * a default UI.
 *
 * This method also groups the parameters specified in the args param in the
 * Playground group and then puts all methods that start with on* in the events
 * group, all props starting with aria* in the aria group and everthing else in
 * an Everthing Else group.
 *
 * @param args The arguments to put in the Playground group.
 * @param type The base type of the arguments.  If passed will group all
 * arguments by some basic rules.
 */
export declare const Playground: (args: Record<string, any>, type?: any) => any;
export default Playground;
//# sourceMappingURL=playground.d.ts.map