import { type InputAdminConfiguration } from '../types'; import { PdkAdmin } from './PdkAdmin'; export type CreatePdkAdmin = (configuration?: InputAdminConfiguration) => undefined | PdkAdmin; /** * Initialize the pdk frontend, parse configuration, and send a boot event that triggers the * components to render themselves using the PdkAdmin class. */ export declare const createPdkAdmin: CreatePdkAdmin;