export interface Props {
  name?: string
}

export interface AppWithDebugProps {
  children?: any;
  vconsoleEnabled?: boolean;
  uid?: string
  copyText?: (text: string) => void;
  contentList?: Array<{
    label: string;
    value?: string;
    isDisabled?: boolean
  }>;
  whiteListUrl?: string;
}
